1

我在视图中使用 loopjs tokeninput。在这种情况下,我需要为给定的 Distributor 使用 AdminNames 预先填充控件。

代码如下:

$.getJSON("@Url.Action("SearchCMSAdmins")", function (data) {

            var json=eval("("+data+")");    //doesnt work

            var json = {                    
                "users": [
                 eval("("+data+")")         //need help in this part
                ]
            }                
        });

        $("#DistributorCMSAdmin").tokenInput("@Url.Action("SearchWithName")", {
            theme: "facebook",                
            preventDuplicates: true,
            prePopulate: json.users

        });

json 值成功返回到以下函数。我需要以下格式的 json:

   var json = {
            "users": 
            [
               { "id": "1", "name": "USER1" },
               { "id": "2", "name": "USER2" },
               { "id": "3", "name": "USER3" }
            ]
          }
4

0 回答 0