我需要将一个js多维数组(维数在编译时是未知的)传递给我在c#中的代码隐藏,我已经用下面的方法做到了这一点: var AdjustItems = ""; //My string variable to store the array separated with '|' and '-' for (var i = 0; i < adjusts.length; i++) { //adjusts is my js array AdjustItems ...