我试图让JSONStore在联想A7000-a上的MobileFirst 7应用程序中工作。但是JSONStore在初始化时会抛出错误。然而,在我的LG P880上,它工作得很好。以下是init的代码:
var collections = {
configuration : {
searchFields : { id : 'string' }
},
taskList : {
searchFields : { id : 'string' }
},
statistics : {
searchFields : { subCategoryId : 'string' }
},
issues : {
searchFields : {
id : 'string',
internalId : 'string',
taskListId : 'string',
subCategoryId : 'string',
subTaskId : 'string'
}
},
subCategories : {
searchFields : {}
},
categories : {
searchFields : {}
},
resultQueue : {
searchFields : {
taskListId: 'string'
}
}
};
WL.JSONStore.init(collections)
.then( function (result) {
angular.element(document).ready(function() {
angular.bootstrap(document, ['App']);
});
},
function (error) {
console.log('ERROR: cannot initialize JSONStore');
});这是我所犯的错误:

基于错误,我猜这个错误是因为联想有64位ARM处理器(MT6752M)。有办法解决这个问题吗?
发布于 2015-07-08 07:37:23
将您的MobileFirst Platform Foundation7.0安装更新为来自iFix的最新可用iFix,其中将包含以下修复:
PI43196 JSONSTORE不能正确识别移动设备上的X86_64体系结构处理器
https://stackoverflow.com/questions/31286058
复制相似问题