简体   繁体   English

JSONStore初始化失败

[英]JSONStore initialization fails

I'm trying to get JSONStore working in MobileFirst 7 application on Lenovo A7000-a. 我正在尝试使JSONStore在Lenovo A7000-a上的MobileFirst 7应用程序中工作。 But JSONStore throws error on initialization. 但是JSONStore在初始化时引发错误。 However on my LG P880 it works fine. 但是在我的LG P880上它可以正常工作。 Here is the code of 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');
    });

And here is the error I get: 这是我得到的错误: 在此处输入图片说明 Based on error I guess that this error fires because lenovo has 64-bit ARM processor (MT6752M). 基于错误,我猜测是因为lenovo具有64位ARM处理器(MT6752M)而引发此错误。 Is there a way to fix this problem? 有办法解决这个问题吗?

Update your MobileFirst Platform Foundation 7.0 installation to the latest available iFix from IBM Fix Central, which will contain the following fix: 从IBM Fix Central将您的MobileFirst Platform Foundation 7.0安装更新到最新的可用iFix,它将包含以下修复程序:

PI43196 JSONSTORE DOES NOT CORRECTLY IDENTIFY X86_64 ARCHITECTURE PROCESSORS ON MOBILE DEVICES PI43196 JSONSTORE无法在移动设备上正确识别X86_64体系结构处理器

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM