gpt4 book ai didi

javascript - 有 id 和 name 的 json 字符串?使用 c 锐利

转载 作者:行者123 更新时间:2023-12-03 07:41:04 32 4
gpt4 key购买 nike

这是我的 json 字符串

 var people = '{"Id": 101020001 ,  "Title": "subsidary","Id": 103010001 ,  "Title": "LOAN FROM BANK ?","Id": 104010001 ,  "Title": "FAWAD","Id": 104010002 ,  "Title": "GETING","Id": 104010003}

我把它构建为

     string MyDictionaryToJson(Dictionary<int, string > dict)
{
var entries = dict.Select(d =>
string.Format("\"Id\": {0} , \"Title\": \"{1}\"", d.Key, string.Join(",", d.Value)));
return "{" + string.Join(",", entries) + "}";
}

但我想填充剑道网格,所以 ID 未知,我想要这样

"{"Id":"101020001" , "Title":"titlesubsidary"},{"Id":"101020002" , "Title":"titlenext"}, {"Id":"101020003" , "Title":"titleagain"}

剑道组合框

    var people = '<%=jsonS %>'
$('#Text1').kendoComboBox({

dataTextField: 'Title',
dataValueField: 'Id',
template: "<table><tr><td width='100px'>${ Id}</td><td width='100px'>${ Title }</td></tr></table>",
dataSource: { data: people }

});

error:ReferenceError: Id is not defined

最佳答案

因为您的 Json 字符串无效。您不应该手动构建它。尝试使用Json.NET 。如果你想检查 Json 如何映射到对象,你可以使用 json2csharp .

关于javascript - 有 id 和 name 的 json 字符串?使用 c 锐利,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35411354/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com