WL.JSONStore是IBM mobilefirst中的未定义错误

时间:2017-10-26 12:52:25

标签: ibm-mobilefirst jsonstore

我正在获取WL.JSONStore在移动浏览器模拟器中是未定义的错误,而我正在尝试在我的移动应用程序中使用JSONStore。我正在使用IBM mobilefirst(版本8.0.0-2017091111)。 enter image description here

function wlCommonInit(){

WL.JSONStore.init(collections, options).then(function () {
     alert("intialized successfully");

    }).fail(function (errorObject) {
        alert("failed to initialize collection\n"+ JSON.stringify(errorObject));
    });   

document.getElementById("btn_submit").addEventListener("click", onSubmit, false);

}

function onSubmit(){
var collectionName="people";
var data={firstName:$('#first').val(),middleName:$('#middle').val(),lastName:$('#last').val()};
WL.JSONStore.get(collectionName).add(data, options).then(function () {
   alert("added data successfully");
}).fail(function (error) {

});
}

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

你能指定哪个版本的' cordova-plugin-mfp-jsonstore'你的应用正在使用(运行命令' cordova plugin ls')。

您是否遵循本教程? Link