作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以告诉我下面的代码怎么了。主要问题是该行:
fDbListAllClients; // this is not being "called"
fDbDeleteOneClient(String sKey) {
var oDbTxn = ogDb1.transaction(sgTblClient, 'readwrite');
var oDbTable = oDbTxn.objectStore(sgTblClient);
var oDbRecord = oDbTable.getObject(sKey);
oDbRecord.onSuccess.first.then((val) {if (oDbRecord.result == null) {
window.alert("Record $sKey not found and cannot be deleted");
return;}});
var oDbDelReq = oDbTable.delete(sKey);
oDbDelReq.onSuccess.first.then((val1) {
var oDbRecord = oDbTable.getObject(sKey); // check if it was deleted
oDbRecord.onSuccess.first.then((val2){
if (oDbRecord.result != null) {
window.alert("Record $sKey was found but cannot be deleted");
}
});
fDbListAllClients; // this is not being "called"
});
oDbDelReq.onError.first.then((e) => window.alert(
"Error on Delete of $sKey. Error = ${e}"));
}
最佳答案
问题或主要问题的一部分是需要使用onSuccess.listen()。当有人回答另一个问题时:
“onSuccess是一个流。如果您想接收多个元素,只需为其“监听”:onSuccess.listen。”
关于dart - indexed_db-objectstore.delete-onSuccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14661641/
有人可以告诉我下面的代码怎么了。主要问题是该行: fDbListAllClients; // this is not being "called" 似乎没有执行。 也可能有其他错误代码。我不担心
我是一名优秀的程序员,十分优秀!