在使用jqGrid动态填充下拉菜单进行数据编辑时,下拉菜单中会出现额外的“undefined”项。此问题源于用于填充下拉菜单值的字符串格式。
jqGrid要求下拉菜单值格式如下:
<code>value: "FE:FedEx; IN:InTime; TN:TNT"</code>
但是,ASP.NET MVC操作中的代码使用sb.ToString()生成字符串,这会在值周围添加不必要的引号:
<code>value: ""ID: One;ID: Two;ID: Three;ID: Four;ID: Five;""</code>
方法一:使用dataUrl
为了解决这个问题,建议使用jqGrid中editoptions或searchoptions的dataUrl属性。这允许您指定返回所需格式结果的URL:
<code>{ name: 'destinations', ditable: true, edittype:'select', editoptions: { dataUrl:'<%= Url.Action("GetDestinationList","Home") %>' } }</code>
在控制器中,GetDestinationList操作应返回包含下拉菜单值的JSON数组:
<code>public JsonResult GetDestinationList() { List<string> allDestinations = GetAllDestinations(); Json(allDestinations, JsonRequestBehavior.AllowGet); }</code>
方法二:使用buildSelect函数
如果无法使用dataUrl,可以使用buildSelect函数来格式化下拉菜单值:
<code class="language-javascript"> buildSelect: function(data) { var s = ''; if (response && response.length) { for (var i = 0, l=response.length; i<l ; i++) { var ri = response[i]; s += ''+ri+''; } } return s + ""; }</code>
此函数接收来自服务器的响应数据,并返回所需格式的字符串。
以上是为什么我的 ASP.NET MVC $.post 请求返回 jqGrid 下拉列表的意外格式化字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!