[{"id":1,"name":"ABC"},{"id":2,"name":"XYZ"}]
这是控制器以 json 格式返回数据的方式
我想以以下格式存储它:
var json = {
"users": [
{ "id": "1", "name": "ABC" },
{ "id": "2", "name": "XYZ" },
]
}
以下是我使用但不起作用的代码。
var json =
{
"users": $.getJSON("@Url.Action("SearchCMSAdmins")")
}
$("#DistributorCMSAdmin").tokenInput("@Url.Action("SearchWithName")", {
theme: "facebook",
preventDuplicates: true,
prePopulate:json.users
});
任何帮助表示赞赏。提前致谢。