0

我有一个商店,它在登录成功时在控制器中创建。代码如下所示:

控制器是 login.js

    //////////// create a JSONstore and load companies into it ////////////// 
var companies_data = new Ext.data.JsonReader({}, [ 'companyame']);      
    var storeCompanies = new Ext.data.JsonStore({
    storeId: 'storeCompanies', 
          proxy: new Ext.data.HttpProxy({
              type: 'GET',
            url: url+'dashboard/?Uid='+uid+'&Ude='+ude,
            reader: {
                type: 'json',
                root: 'root',
                totalProperty: 'total'
            },
            headers: {
               'Accept' : 'application/json;application/x-www-form-urlencoded',
               'Content-Type' : 'application/x-www-form-urlencoded',
            },
             params: {
                Uid: localStorage.uid,
                Ude: localStorage.ude,
            },
          }),
          reader: companies_data,  
          root: 'd',
          type: 'localstorage',
          autoLoad : true,
          id: 'company_Id',
          scope : this,
          fields: ['companyname']
        });

该代码是一个函数,在成功登录时调用它并将值传递给它。

这可以正常工作,并且商店可用于登录视图

我需要商店对我的主视图可用。

在我的 login.js 控制器中,我引用了这样的主视图:

Ext.define('axis3.controller.Login', {
extend: 'Ext.app.Controller',
config: {
    refs: {
        loginView: loginview,
        mainView: 'mainview',
        chartView: 'chartview'
    },
    control: {
        loginView: {
            signInCommand: 'onSignInCommand'
        },
        mainMenuView: {
            onSignOffCommand: 'onSignOffCommand'
        }
    }
},

但这似乎没有帮助。

当我在主视图中使用以下内容时

var companyStore = Ext.getStore('storeCompanies'); // 
console.log('1-Number : ' + companyStore.getCount()); // Using getCount method.
var anotherCompany = { companyname: 'North Wells'};
companyStore.add(anotherCompany);  // 
console.log('2-Number : ' + companyStore.getCount()); // Using getCount method.
//////////////

Ext.define('axis3.view.Main', {
extend: 'Ext.form.Panel',
requires: ['Ext.TitleBar','Ext.data.Store'],
alias: 'widget.mainview',......................

我收到此错误:

TypeError:“未定义”不是对象(评估“companyStore.getCount”)

如何在不同的视图中使用我的商店?

4

2 回答 2

0

storeId,试试这样

var storeCompanies = Ext.create("Ext.data.JsonStore",{
          storeId: 'storeCompanies', // add this line
          proxy: new Ext.data.HttpProxy({
            type: 'GET',
            url: url+'dashboard/?Uid='+uid+'&Ude='+ude,
            reader: {
                type: 'json',
                root: 'root',
                totalProperty: 'total'
            },
            headers: {
               'Accept' : 'application/json;application/x-www-form-urlencoded',
               'Content-Type' : 'application/x-www-form-urlencoded',
            },
             params: {
                Uid: localStorage.uid,
                Ude: localStorage.ude,
            },
          }),
          reader: companies_data,  
          root: 'd',
          type: 'localstorage',
          autoLoad : true,
          id: 'company_Id',
          scope : this,
          fields: ['companyname']
        });

现在再试一次Ext.getStore('storeCompanies');

于 2013-08-14T07:59:14.713 回答
0

如果发现问题。该视图正在尝试在商店存在之前使用它。商店仅在用户登录时创建。

我决定使用的解决方案是创建一个空商店,然后在成功登录时向其中添加数据。

var anotherCompany = {companyname: 'Keep Groom'};
companiesStore2.add(anotherCompany);  // Use the add function to add records or model instances.

这似乎有效

于 2013-08-14T09:33:26.873 回答