无法从钛中的json对象中删除数据
我正在使用 Titanium 开发 Android 应用程序。我想删除一些新数据并将其推送到 json 对象中。我使用了以下代码:
var jsonfeed = this.responseText;
var jsontext = JSON.parse(jsonfeed);
我的 json 对象如下:
{"feeds":
[
{"username":"abc","user":"abc","feed":{"description":"dss","id":660,"user_id":1}},
{"username":"bcd","user":"bcd","feed":{"description":"dddd","id":659,"user_id":1}}
]
}
我想删除 jsontext.feeds[0]。我尝试了像 jsontext.feeds.splice(0,1) 这样的 Splice,它返回正确的值,但实际上没有从 jsontext 中删除任何值。有没有办法从 json 对象中删除数据或关于我的任何建议代码。谢谢。
I am developing Android application using Titanium. I want to delete and push some new data in to json object.I used following code:
var jsonfeed = this.responseText;
var jsontext = JSON.parse(jsonfeed);
My json object give below:
{"feeds":
[
{"username":"abc","user":"abc","feed":{"description":"dss","id":660,"user_id":1}},
{"username":"bcd","user":"bcd","feed":{"description":"dddd","id":659,"user_id":1}}
]
}
I want to delete jsontext.feeds[0]. I tried Splice like jsontext.feeds.splice(0,1) it returns correct value but it actually not deleting any value from jsontext.Is there any way to delete data from json object or any suggestion about my code.Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用shift()怎么样
what about try using shift()