问题
I am experimenting with indexeddb, and have some data added to ObjectStore which should have 90 rows.
But I can see only 50 rows in Chrome development tools.
Is it Chrome that limits the rows, or my code is not adding more than 50 rows? For example:
for (var i=0; i< 100; i++){
var tmp = "data" + i;
store.put({question: tmp});
}
this code adds only 50 rows/data into store even though I am adding 100.
Thanks forward
回答1:
You can navigate through all items in the Chrome resource tab using the navigation controls on top of the screen. Please see the attached picture:
来源:https://stackoverflow.com/questions/27355566/chrome-shows-only-up-to-50-rows-of-indexeddb-table-data