JSONStore初始化失败

时间:2015-07-08 07:24:23

标签: android ibm-mobilefirst

我正在尝试让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');
    });

这是我得到的错误: enter image description here 根据错误,我猜这个错误会触发因为lenovo有64位ARM处理器(MT6752M)。有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:1)

将您的MobileFirst Platform Foundation 7.0安装更新为IBM Fix Central中最新的可用iFix,其中包含以下修复程序:

PI43196 JSONSTORE无法正确识别移动设备上的X86_64架构处理器