我有下一个JSON
{
"attrib1":"value1",
"attrib2":"value2",
"attrib3":"value3"
}
这个Json被保存到JObject
,我想创建一些函数来改变这个Json的特定值,在本例中是attrib1
,就像:
JObject ChangeJson(JObject request,string new_value)
{
//some stuff to change the value from "attrib1"="value1" to "new_value"
}
新Json:
{
"attrib1":"new_value",
"attrib2":"value2",
"attrib3":"value3"
}
希望你能帮助我
答案 0 :(得分:0)
希望这会有所帮助
request.attrib1 = "new_value";
答案 1 :(得分:0)
你不想告诉我你自己试图找到答案吗?
规则:
不要问......
您没有尝试过的问题(展示您的工作!)
总之...
request["attrib1"] = "new_value";
将完成工作。 它将就地修改请求对象。