我遇到了Android中JSONStore init函数的问题。它将挂起大约10分钟,直到那时JSONStore给我初始结果回调。这确实只发生在Android和iPhone工作正常。我可以给出重现程序:
我使用inspect调试应用程序,我确定这是WL.JSONStore.init没有给我挂起应用程序的结果回调的问题。我不知道第一次需要消耗这么多时间的原因。有人遇到和我一样的问题吗?
var options = {password:pscd,localKeyGen:true};
var promise =
WL.JSONStore.init(data_collection, options).then(function(){
console.info("init json store successfully!");
return true;
}).fail(function (errorObject) {
console.info("init json store failed!" + errorObject);
return false;
});
return promise;
答案 0 :(得分:1)
我刚刚在您拥有的相同6.1版本中尝试了以下代码,并且它在Android模拟器和Nexus 4上运行良好:
var data_collection = {people : {
searchFields : {name : 'string', age : 'integer'}
}
};
var pscd = "samplepassword";
var options = {password:pscd,localKeyGen:true};
var promise =
WL.JSONStore.init(data_collection, options).then(function(){
alert("init json store successfully!");
return true;
}).fail(function (errorObject) {
alert("init json store failed!" + errorObject);
return false;
});
return promise;
唯一可能与您的代码不同的是您的密码或您的data_collection变量。您能否添加有关data_collection的更多详细信息?