This is the JSON stored in my chrome local storage
{"users":[
{"password":"123","userName":"alex"},
{"password":"234","userName":"dena"},
{"password":"343","userName":"jovit"}
]}
Is it possible to remove a specific item in "users" ? I tried to this code but no luck
chrome.storage.local.remove('users[0]', function(){
alert('Item deleted!');
});
This is the JSON stored in my chrome local storage
{"users":[
{"password":"123","userName":"alex"},
{"password":"234","userName":"dena"},
{"password":"343","userName":"jovit"}
]}
Is it possible to remove a specific item in "users" ? I tried to this code but no luck
chrome.storage.local.remove('users[0]', function(){
alert('Item deleted!');
});
Share
edited Jul 30, 2014 at 8:47
Rob W
349k87 gold badges807 silver badges682 bronze badges
asked Jul 30, 2014 at 8:27
Alex CorozaAlex Coroza
1,7573 gold badges23 silver badges39 bronze badges
10
-
is this
StorageArea.remove(string or array of string keys, function callback)
the same method as yours? – doniyor Commented Jul 30, 2014 at 8:31 - stackoverflow./questions/17927378/… – Lakshay Dulani Commented Jul 30, 2014 at 8:31
- @doniyor Im not sure but I think thats it. here is the documentation im using [link]developer.chrome./apps/storage – Alex Coroza Commented Jul 30, 2014 at 8:35
- @AlexCoroza yeah then it is the same – doniyor Commented Jul 30, 2014 at 8:35
- Voting to reopen. This is not a duplicate, @RobW. – Xan Commented Jul 30, 2014 at 8:36
2 Answers
Reset to default 7There is no magic syntax to delete only one element from an array that is stored in chrome.storage
. In order to delete an item from the array, you has to retrieve the stored array, throw away the unwanted items (or equivalently, keep only the items that you want to keep), then save the array again:
chrome.storage.local.get({users: []}, function(items) {
// Remove one item at index 0
items.users.splice(0, 1);
chrome.storage.set(items, function() {
alert('Item deleted!');
});
});
See https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice.
Note that if you want to delete one or more items whose value satisfies a certain condition, you have to walk the array in reverse order. Otherwise you may end up removing the wrong items since the indices of the later elements are off by one after removing the first item, off by two when you've removed two items, etc.
Yes you can try this
chrome.storage.sync.remove("token");
see documentation