存储 storage 大小测试 浏览器 5M 手机端没限制

(function() {
var test = ‘0123456789‘;
var add = function(num) {
num += num;
if(num.length == 10240) {
test = num;
return;
}
add(num);
}
add(test);
var sum = test;
var show = setInterval(function(){
sum += test;
try {
plus.storage.removeItem(‘test‘);
plus.storage.setItem(‘test‘, sum);
console.log(sum.length / 1024 + ‘KB‘);
} catch(e) {
alert(sum.length / 1024 + ‘KB超出最大限制‘);
clearInterval(show);
}
}, 0.1)

})()

存储 storage 大小测试 浏览器 5M 手机端没限制

上一篇:AppCrawler——安卓端的自动化遍历测试


下一篇:Android 控件三 TextView 控件实现 Button