在过去的一周里,我已经尝试过很多种方式,但是我无法让JSONStore回调始终如一。我正在使用运行Worklight 5.0.6的Mac。我将提供我认为最简单的示例:使用硬编码值从Worklight JSONStore生成器创建的代码。
初始化集合并调用findAll()之类的函数后,既不会触发成功也不会触发故障回调。我已经使回调工作,但不一致或可靠。我无法解释为什么它几乎不起作用。
我已经尝试过使用jQuery promise框架和不推荐的回调方法。在这两种情况下都不会调用回调。我也尝试在JSONStore上调用destroy()来强制新创建。
function initContactsCollection() {
if ((WL.Client.getEnvironment() === 'iphone' ||
WL.Client.getEnvironment() === 'ipad' ||
WL.Client.getEnvironment() === 'android') &&
typeof cordova !== 'undefined' &&
typeof WL.JSONStore !== 'undefined' &&
typeof jQuery !== 'undefined' &&
typeof jQuery.event.trigger === 'function') {
// var pwd = prompt('Enter your password');
var contacts = WL.JSONStore.initCollection("contacts",
{"agentId":"string","notes.isSuccessful":"boolean","firstName":"string","workPhone":"string","email1":"string","email2":"string"},
{
//password: pwd,
adapter : {
name: 'ams',
replace: 'updateContact',
remove: 'deleteContactNote',
add: 'addNewContact',
load: {
procedure: 'getContacts',
params: ["AA12345678910X-DB"],
key: 'contacts'
},
accept: function (data) {
return (data.status === 200);
}
}
});
contacts.promise
.done(function () {
WL.Logger.debug('[JSONStore] contacts is ready to be used.');
contacts.count().done(function(res){
if(res < 1){
customers.load();
}
});
})
.fail(function (errObj) {
WL.Logger.debug('[JSONStore]' + errObj.toString());
});
} else {
WL.Logger.debug('[JSONStore] Check your dependencies.');
}
} // end function
答案 0 :(得分:1)
您的JavaScript中存在许多错误,您正在调用customers.load而不是contacts.load,并且您拥有的承诺嵌套可能不是您想要的。我没有你的适配器所以我不能100%确定这个代码是否有效,但它会非常接近你想要的。
function initContactsCollection() {
if ((WL.Client.getEnvironment() === 'iphone' ||
WL.Client.getEnvironment() === 'ipad' ||
WL.Client.getEnvironment() === 'android') &&
typeof cordova !== 'undefined' &&
typeof WL.JSONStore !== 'undefined' &&
typeof jQuery !== 'undefined' &&
typeof jQuery.event.trigger === 'function') {
// var pwd = prompt('Enter your password');
var contacts = WL.JSONStore.initCollection("contacts",
{"agentId":"string","notes.isSuccessful":"boolean","firstName":"string","workPhone":"string","email1":"string","email2":"string"},
{
//password: pwd,
adapter : {
name: 'ams',
replace: 'updateContact',
remove: 'deleteContactNote',
add: 'addNewContact',
load: {
procedure: 'getContacts',
params: ['AA12345678910X-DB'],
key: 'contacts'
},
accept: function (data) {
return (data.status === 200);
}
}
});
contacts.promise
.then(function () {
WL.Logger.debug('[JSONStore] contacts is ready to be used.');
return contacts.count();
})
.then(function(res){
var newDeferred;
if(res < 1){
WL.Logger.debug('DB Empty, calling load');
return contacts.load();
}else{
newDeferred = $.Deferred();
setTimeout(function(){
newDeferred.resolve(0);
});
return newDeferred;
}
})
.then(function(){
WL.Logger.debug('done with setup stuff');
})
.fail(function (errObj) {
WL.Logger.debug('[JSONStore]' + errObj.toString());
});
} else {
WL.Logger.debug('[JSONStore] Check your dependencies.');
}
} // end function