-2

我有这个对发送 w、h 和 id 的 MyMethod 的调用。但是,即使我更改名称,h 也始终为空。w 和 id 有值。知道发生了什么吗?

showDialog('@Url.Action("MyMethod", "MyController",new { w = "300", h = "800", id = "testing" })', "800", "500", "弹出标题", null, 回调);

公共 ActionResult MyMethod(string w, string h, string id) {

}

4

1 回答 1

0

虽然这不会给您带来麻烦,但数字应该保持在数字类型中,试试这个:

showDialog('@Url.Action("MyMethod", "MyController",new { w = 300, h = 800, id = "testing" })', "800", "500", "Popup Title", null, callBack);

public ActionResult MyMethod(int w, int h, string id) {

}
于 2013-08-02T17:17:33.523 回答