1

嗨,我发现了很多关于从 sencha 中的数据库加载数据的示例。我尝试用笔记制作一个列表,第二步我希望能够向我的数据库添加(保存)一个笔记。我在本地存储上尝试。

现在我从我的 Arraystore 中的数组加载数据。我应该在哪里设置我的代理?(在商店还是在模型中?)

如何在我的商店中插入数据?我在我当前的arraystore上尝试过类似的东西,但没有运气:(这是通过按下代码运行的代码):

 MyArrayStore.add({title:"newnote",narrative:"bla bla bla",date:now,id:noteid});
    MyArrayStore.sync();

浏览器控制台出现错误:Uncaught ReferenceError: MyArrayStore is not defined 我应该创建我的商店的实例还是什么?

我的模型是这样的:thanx 的答案。我在建筑师身上试试。我的模型是这样的:

Ext.define('MyApp.model.NoteModel', {
    extend: 'Ext.data.Model',
    alias: 'model.NoteModel',
    config: {
        fields: [
            {
                name: 'id',
                type: 'int'
            },
            {
                name: 'date',
                type: 'date'
            },
            {
                name: 'title',
                type: 'string'
            },
            {
                name: 'narrative',
                type: 'string'
            }
        ],
        proxy: {
            type: 'localstorage',
            id: 'local'
        }
    }
});

我的商店是这样的:

Ext.define('MyApp.store.MyArrayStore', {
    extend: 'Ext.data.Store',
    requires: [
        'MyApp.model.NoteModel'
    ],

    config: {
        data: [
            {
                title: 'Note 1',
                narrative: 'test1 1'
            },
            {
                title: 'Note 2',
                narrative: 'narrative 2'
            },
            {
                title: '3 ertyyh',
                narrative: 'narrative 3'
            },
            {
                title: '4 asdf',
                narrative: 'narrative 4'
            },
            {
                title: 'Note 5',
                narrative: 'narrative 5'
            },
            {
                title: 'weadf',
                narrative: 'narrative 6'
            }
        ],
        model: 'MyApp.model.NoteModel',
        storeId: 'MyArrayStore'
    }
});
4

2 回答 2

3

您应该在模型或商店中设置代理。以下是如何在您的模型中执行此操作。

Ext.define('MyModel', {

extend: 'Ext.data.Model',

config: {
    fields: ['field1'],
    proxy: {
        type: 'localstorage',
        id  : 'my-model-localstorage-id'
    }
});

也可以在您的商店中进行相同的操作。

之后,鉴于“MyArrayStore”是此类商店的一个实例,您建议的代码应该可以正常工作。

希望这可以帮助。

于 2012-05-02T12:43:06.970 回答
2

如果您想访问您的商店(您在问题中更新的商店),那么您可以使用:

Ext.StoreManager.get('MyArrayStore')

因此,例如,您想要执行的操作可以通过以下方式完成:

var store=Ext.StoreManager.get('MyArrayStore');
store.add({title:"newnote",narrative:"bla bla bla",date:now,id:noteid});
store.sync();
于 2012-05-03T12:23:13.423 回答