簡體   English   中英

JSONStore代碼無法正常工作

[英]JSONStore code not working

我正在嘗試學習JSONStore,在此過程中我試圖執行一段代碼,首先檢查特定的JSONStore是否已經存在於設備中,並根據結果執行if-else語句。 如果它不存在,它將創建一個並在其中添加一些數據。 如果jsonStore已經存在,代碼將用新數據替換先前存儲的數據。 但是當我嘗試執行代碼時,我的設備會顯示html內容一段時間,然后屏幕變為空白。 當我檢查logcat時,我沒有得到我在代碼中添加的任何控制台日志語句。 任何人都可以幫助我理解這種行為以及可以采取哪些措施來實現這一要求。

     var JSONStoreCollections = {};
     var collectionName = 'Person';

    function wlCommonInit(){
require([ "layers/core-web-layer", "layers/mobile-ui-layer" ], dojoInit);

     }

    function dojoInit() {
 require([ "dojo/ready", "dojo/parser", "dojox/mobile", "dojo/dom", "dijit/registry",                "dojox/mobile/ScrollableView" ], function(ready) {
 ready(function() {

    if(!(WL.JSONStore.get(collectionName))){
        console.log("i am in if codition");

                   var Data={
                               Name:'name',
                               Age:27
                          };

         JSONStoreCollections[collectionName] = {};
        JSONStoreCollections[collectionName].searchFields = {Name: 'string'};
        WL.JSONStore.init(JSONStoreCollections)
                                    .then(function () {
                                    console.log("store created");
                                    })
                                    .fail(function (errorObject) {
                                    console.log("store creation failed");
                                    });

                       WL.JSONStore.get(collectionName).add(Data)
                       .then(function () {
                        console.log("data added");
                            })
                            .fail(function (errorObject) {
                            console.log("data addition failed");
                            });
                       var query = {Name: 'name'};

                        WL.JSONStore.get(collectionName)
                        .find(query)
                        .then(function (arrayResults) {

                            console.log(arrayResults);
                            WL.Logger.debug(arrayResults);

                        })
                        .fail(function (errorObject) {
                            console.log(errorObject);

                            WL.Logger.debug(errorObject);
                        });             

                    }
               else{
                       var Data1={
                               Name:'name1',
                               Age:30
                          };

                       WL.JSONStore.get(collectionName).replace(Data1)
                       .then(function () {
                        console.log("data replaced");
                            })
                            .fail(function (errorObject) {
                            console.log("data replacement failed");
                            });

                                           var query = {Name: 'name1'};

                        WL.JSONStore.get(collectionName)
                        .find(query)
                        .then(function (arrayResults) {

                            console.log(arrayResults);
                            WL.Logger.debug(arrayResults);

                        })
                        .fail(function (errorObject) {
                            console.log(errorObject);

                            WL.Logger.debug(errorObject);
                        });                                      


               }

    });
});
}
  1. 您需要先進行初始化,否則WL.JSONStore.get(collectionName)將始終返回undefined。 如果您從未初始化JSONStore,則無法使用它。
  2. replace API適用於JSONStore文檔(具有_idjson鍵的對象)。
  3. 您只需要一個.fail ,錯誤對象將告訴您錯誤的來源( errorObject.src )。

請參閱下面未經測試的偽代碼,了解您要執行的操作:

function wlCommonInit () {

var collectionName = 'Person';

var Data = {
 Name: 'name',
 Age: 27
};

var JSONStoreCollections = {};
JSONStoreCollections[collectionName] = {};
JSONStoreCollections[collectionName].searchFields = {Name: 'string'};

WL.JSONStore.init(JSONStoreCollections)

.then(function () {
  WL.Logger.debug('Init done');
  return WL.JSONStore.get(collectionName).findAll();
})

.then(function (res) {
  WL.Logger.debug('Find All returned:', res);

  if (res.length < 1) {

    return WL.JSONStore.get(collectionName).add(Data);

  } else {

    res[0].json = {
      Name:'name1',
      Age:30
    };

    return WL.JSONStore.get(collectionName).replace(res[0]);
  }

})

.then(function () {
  WL.Logger.debug('Add or Replace done');
  return WL.JSONStore.get(collectionName).find({Name: 'name'});
})

.then(function (res) {
  WL.Logger.info('Final Find returned:', res);
})

.fail(function (err) {
  WL.Logger.error(err);
});

}

第一次執行預期輸出:

Init done
Find All returned: []
Add or Replace done
Final Find returned: [{"_id":1,"json":{"Name":"name","Age":27}}] 

除第一次執行以外的預期輸出:

Init done
Find All returned: [{"_id":1,"json":{"Name":"name","Age":27}}]
Add or Replace done
Final Find returned: [{"_id":1,"json":{"Name":"name1","Age":30}}] 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM