```
[AcceptVerbs(HttpVerbs.Post)]
public JsonActionResult Add(long[] IdList)
{
for (int i = 0; i < IdList.Length; i++)
{
// do something
}
}
```
```
var o = {
url: addButton.action.url,
method: addButton.action.method,
params: {
'IdList': Ext.encode(allIds)
}
};
Ext.Ajax.request(o);
```
> I am trying to pass a long[] to code behind from an Ajax call. The IdList currently comes in as a string which I convert into a JsonArray. Is there a ways to use the bind attribute ?
以上就是Binder for long{} in MVC的详细内容,更多请关注web前端其它相关文章!