无法从钛中的json对象中删除数据

发布于 2024-12-09 02:19:50 字数 564 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云淡月浅 2024-12-16 02:19:50

尝试使用shift()怎么样

alert(jsontext.feeds[0].username) // abc

  // shift the beginning of the array
  jsontext.feeds.shift();

alert(jsontext.feeds[0].username) //bcd  ?

what about try using shift()

alert(jsontext.feeds[0].username) // abc

  // shift the beginning of the array
  jsontext.feeds.shift();

alert(jsontext.feeds[0].username) //bcd  ?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文