Chrome shows only up to 50 rows of indexeddb table data

半腔热情 提交于 2019-12-19 03:58:36

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!