如何将数据添加到JSONStore IBM MobileFirst

时间:2017-04-27 09:31:45

标签: json ibm-mobilefirst add jsonstore

我们是IBM-MobileFirst的新手。我们需要在JSONStore中创建,插入,获取,删除数据。所以我们尝试了这样:

main.js: -

function wlCommonInit(){
    console.log("Bootstrapping Angular");
    angular.element(document).ready(function(){
        angular.bootstrap(document,['app']);
          var collectionName = 'people';
           var options = {};
               options.username = 'pavan';
               options.password = '123';
               options.localKeyGen = false;
               options.clear = false;
               WL.JSONStore.init(collectionName, options).then(function () {
                  alert("OK");
                  WL.JSONStore.get(collectionName).add([{name: 'carlos'}, {name: 'mike'}])
                   .then(function () {
                       alert("OK3");
                   });
              }).fail(function (errorObject) {
                  alert("fail");
              });
    })
}

首先我们得到警报确定接下来它在控制台中显示错误

  

未捕获的TypeError:无法读取属性'添加'未定义的

我们理解使用add插入表格。使用findAll获取所有记录,使用remove删除,但问题是添加功能不起作用。所以告诉我们错过了什么并指导我们。

0 个答案:

没有答案