admin管理员组文章数量:1435859
I am trying my best to program an angular app. I have a problem pushing an empty array into an object.
I get an error:
TypeError: Cannot read property 'push' of undefined
I have an object called items which looks like this:
Object
{
"Name": "name",
"Description": "description"
}
I would like to push an empty array into the object that can contain another array. Something like this.
Object
{
"Name": "name",
"Description": "description",
"Related Items": {
Item1:{...},
Item2:{...},
...
}
}
My controller does this when it is called:
$scope.push = function () {
$scope.item.push({"Related Items":[]});
};
I know I must be getting mixed up with something simple about the JSON Objects and Arrays, but I can't seem to find a solution.
Thankyou!
I am trying my best to program an angular app. I have a problem pushing an empty array into an object.
I get an error:
TypeError: Cannot read property 'push' of undefined
I have an object called items which looks like this:
Object
{
"Name": "name",
"Description": "description"
}
I would like to push an empty array into the object that can contain another array. Something like this.
Object
{
"Name": "name",
"Description": "description",
"Related Items": {
Item1:{...},
Item2:{...},
...
}
}
My controller does this when it is called:
$scope.push = function () {
$scope.item.push({"Related Items":[]});
};
I know I must be getting mixed up with something simple about the JSON Objects and Arrays, but I can't seem to find a solution.
Thankyou!
Share Improve this question edited Oct 6, 2014 at 18:03 maikelinhas asked Oct 6, 2014 at 16:46 maikelinhasmaikelinhas 812 silver badges8 bronze badges3 Answers
Reset to default 2Since item
is an object, you can just set the Related Items
property:
$scope.item["Related Items"] = [];
$scope.item["Related Items"].push({});
However, above it looks like Related Items
is actually an object with key names Item1
, etc. rather than an array.
$scope.item["Related Items"] = {};
$scope.item["Related Items"].Item1 = {};
Javascript's push
function only works when you're pushing values to an array. It won't work if you try to push to an object, instead it will try to call the key of "push" which doesn't exist. That's why you're getting the error you're getting.
Make sure that $scope.item
is an array ([]
or new Array
), and then push to it with the value you would like.
$scope.item = [];
$scope.push = function () {
$scope.item.push({"Related Items":[]});
};
Here's W3School's .push() method explanation.
The item object should be like { .... "Related Items":<"some value"> .... }
It should already have key.
本文标签: Push array into JSON ObjectJavaScriptStack Overflow
版权声明:本文标题:Push array into JSON Object, Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744844208a2628103.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论