有点模糊的问题,但我不确定我如何才能做到这一点。Firebug 说我的 ajax 请求中的 Json 对象(数组?)如下所示:
{
"jsonResult":
"[
{\"OrderInList\":1},
{\"OrderInList\":2}
]"
}
这是通过 $.getJSON ajax 请求检索的:
$.getJSON("/Json/GetOrderSelectList?parentCategoryId=" + postData, testData, function (jsonResult) {
$('#orderInList option').remove();
var map = {
"TestKey1": "TestValue1",
"TestKey2": "TestValue2"
};
$.each(jsonResult, function (key, value) {
$("#orderInList").append($("<option value=" + key + ">" + value + "</option>")
);
});
如果我用 $.each(map) 替换 $.each(jsonResult) ,则选择列表会正确填充。否则我的选择列表只会显示“未定义”。
我在我的 MVC 控制器中序列化此操作中的 Json:
public JsonResult GetOrderSelectList(int parentCategoryId)
{
var result = Session
.QueryOver<Category>()
.Where(x => x.Parent.Id == parentCategoryId)
.OrderBy(x => x.OrderInList).Asc
.List();
var toSerialize =
result.Select(r => new {r.OrderInList});
var jsonResult = JsonConvert.SerializeObject(toSerialize);
return Json(new
{ jsonResult,
}, JsonRequestBehavior.AllowGet);
}
所以我认为问题可能是动作响应的 Json 格式?任何帮助表示赞赏!
编辑答案
下面的两个答案都对我有帮助。我似乎无法强输入变量 jsonResult 所以感谢@JBabey 指出我在读取 json 属性时的错误,并在 $.each 语句中建议函数 (key, value)。
感谢@Darin Dimitrov 帮助整理我的控制器!