我的 JsonResult 如下
[{"name":"Group 1"},{"name":"Group 2"},{"name":"Group 3"}]
在编写for循环时我有点困惑,所以如何迭代这个或在jqGrid的editoptions中的buildSelect函数中获取name的值?我在 jqGrid 中的 colModel 代码如下
{ name: 'GroupName', index: 'GroupName', width: 60, align: 'center', search: false, editable: true, edittype: 'select',
editoptions: {
dataUrl: "/Category/GetCategoryGroup",
buildSelect: function (response) {
if (response && response.length) {
// for loop iteration to get name values
}
}
}
},