如何从 Jacascript/Jquery 对象中的数组中具有项目索引的对象中删除多个数组?
我有以下格式的数组 Items:
从 Javascript/jQuery 中删除元素
{images: Array(4) [ "abcd.png", "bcd.jpg", "def.jpg", … ]
itemIds: Array(4) [ "1", "3", "2", … ]}
var revid=$(this).attr('data');
上面的图像和 itemId 通过解析本地存储中的 JSON 存储在 storedNames
上。
revid 返回 itemIds 上的任何值
这不会给我一个函数错误:
var indexed = storedNames.findIndex(item => item.itemIds === 'revid');
1)如何在 itemIds 中找到 itemIds 的索引>存储名称? (已解决)
2)如何从具有索引值=索引的对象(两个数组)中删除所有项目例如: 我想删除:abcd.png 和 1
?
I have arrayItems on following format:
Remove elements from in Javascript/jQuery
{images: Array(4) [ "abcd.png", "bcd.jpg", "def.jpg", … ]
itemIds: Array(4) [ "1", "3", "2", … ]}
var revid=$(this).attr('data');
Above images and itemIds are stored on storedNames
by parsing JSONfrom localstorage.
revid returns any values which is on itemIds
This is giving me not a function error:
var indexed = storedNames.findIndex(item => item.itemIds === 'revid');
1 ) How can I find the indexof itemIds in storedNames ? (solved)
2) How can I remove all item from object(both array) having index value = indexed For example :
I want to remove : abcd.png and 1
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢@CBroe,
我这样解决了:
这里 localstorageItems 是具有多个数组的本地存储对象。
Thank you @CBroe
I solved this way:
Here localstorageItems is the localstorage object having multiple arrays.