admin管理员组文章数量:1339470
If I have a JSON structure that looks something like this:
var user = {
map: {
width: 785,
height: 791
},
image: {
name: "image.png",
size: {width:32}
},
properties:[{
firstName: "Bob",
lastName: "Jones",
}]
};
How would I change (after creation) the value of the firstName
property to "Jane"?
I am fairly new to JSON, and I'm just trying to figure out how to make this one change for now. Any help would be greatly appreciated.
If I have a JSON structure that looks something like this:
var user = {
map: {
width: 785,
height: 791
},
image: {
name: "image.png",
size: {width:32}
},
properties:[{
firstName: "Bob",
lastName: "Jones",
}]
};
How would I change (after creation) the value of the firstName
property to "Jane"?
I am fairly new to JSON, and I'm just trying to figure out how to make this one change for now. Any help would be greatly appreciated.
Share Improve this question edited Jun 21, 2011 at 0:05 alex 491k204 gold badges889 silver badges991 bronze badges asked Jun 20, 2011 at 23:45 simmBsimmB 311 gold badge1 silver badge4 bronze badges 2- You don't need a function, you should be able to change it with user.properties[0].firstName = "Jane". – Zachary Commented Jun 20, 2011 at 23:48
- 1 Instead of changing the title to indicate "Resolved", the way to close a question on StackOverflow is to click the checkmark to the left of one of the answers you received to designate that as your "Accepted" answer. :o) – user113716 Commented Jun 21, 2011 at 0:00
4 Answers
Reset to default 7Well, one reason for your confusion might be that this is not JSON at all. JSON is a text format used for serialising objects. This is just a literal object in Javascript.
To change the firstName
property, you would access the first item in the properties
array in the user
object:
user.properties[0].firstName = "Jane";
As long as the user
variable is in scope:
user.properties[0].firstName = "Jane";
var changeName = function(obj, newName) {
obj.properties[0].firstName = newName;
return obj;
}
I saw this question and the solutions to it but my script still didn't work. I found the solution and I figured I should post this here, it might save some people a little research.
My JSON result had some integers in it and it required the parseInt() function.
Taking the above example you probably have to do something like this.
user.map.width = parseInt(somevariable);
Since javascript is loosely typed I never really worry about it, but in this case it's necessary.
本文标签: javascriptReplacing a property value in JSONStack Overflow
版权声明:本文标题:javascript - Replacing a property value in JSON - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743586544a2506520.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论