我在用着

WL.JSONStore.get(collectionName).remove(doc)


在我的代码中,有时它不会删除文档,甚至不会将它们标记为已删除。我可能会做错什么?
顺便说一句,这:

WL.JSONStore.get(collectionName).clear()


工作良好。

更新:

好的,这里有一些代码,它在我的浏览器中显示。

var collectionName = 'samplecollection';
var data = [{"name":"Jimbo"},{"name":"Patrick"},{"name":"Alex"},{"name":"Sam"},{"name":"Charlie"},{"name":"Donnie"}];

WL.JSONStore.init({samplecollection:{}}).then(function() {
    WL.JSONStore.get(collectionName).add(data).then(function(){
        WL.JSONStore.get(collectionName).findAll().then(function(docs){
            var promises = [];
            docs.forEach(function(doc){
                console.log(doc);
                var promise = WL.JSONStore.get(collectionName).remove(doc);
                promises.push(promise);
            });
            $.when.apply(null, promises).done(function() {
                WL.JSONStore.get(collectionName).findAll().then(function(docs){
                    console.table(docs);
                });
            });
        });
    });
});




我希望console.table显示一个空数组。但这不是空的。它也没有所有保存的对象。所以我试图了解这里发生了什么。有任何想法吗?

最佳答案

根据我的经验,JS的JSONStore不能很好地处理并行请求。您可以使用async.js之类的东西来创建串行请求。

我在此博客https://developer.ibm.com/mobilefirstplatform/2015/02/24/working-jsonstore-collections-join/中介绍了其中的一些内容

关于javascript - IBM MobileFirst 6.3 JSONStore除去JS中的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29370476/

10-09 22:10