We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function(){ this.deleteDataByKey=function (storeName, index) { var transaction = this.db.transaction(storeName, 'readwrite'); var store = transaction.objectStore(storeName); store.delete(index); //---我的“.delete”被认为错误了 cursor.continue(); //---我的“.continue”被认为错误了 }; return this; }
我只好更正了写法如图:
是不是有些想吐血的感觉,我压缩呢,还要增加代码,请尽快更新解决哦!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
function(){
this.deleteDataByKey=function (storeName, index) {
var transaction = this.db.transaction(storeName, 'readwrite');
var store = transaction.objectStore(storeName);
store.delete(index); //---我的“.delete”被认为错误了
cursor.continue(); //---我的“.continue”被认为错误了
};
return this;
}
我只好更正了写法如图:
是不是有些想吐血的感觉,我压缩呢,还要增加代码,请尽快更新解决哦!
The text was updated successfully, but these errors were encountered: