我想知道为什么我的控制器不能识别整数数组,而是识别整数的对象文字。
c#:控制器:
[HttpGet]
public ActionResult Index(Model search)
模型:
public class Model {
public int[] MyList {get; set;}
}
javascript:
model.myList = [0, 1]; //null at controller
model.myList = {0, 1}; //controller recognizes this
这里发生了什么?