web-dev-qa-db-ja.com

json-storeにレコードを追加する方法

var store = new Ext.data.JsonStore({
    id:'jfields',
    totalProperty:'totalcount',
    root:'rows',
    url: 'data.php',  
    fields:[{ name:'jfields' },
            { name:'firstyear' , mapping :'firstyear' , type:'float' },
            { name:'secondyear', mapping :'secondyear',    type:'float' },
            { name:'thirdyear' , mapping :'thirdyear' , type:'float' },
            { name:'fourthyear', mapping :'fourthyear',    type:'float' },
            { name:'fifthyear' , mapping :'fifthyear' ,    type:'float' } ]

    }                                                    
});

このストアの最後にデータを追加したいのですが、完全に混乱しています。次のコードを追加しましたが、機能しません。

listeners: {
    load : function(){
        BG_store.add([{"jfields":"Monthly","firstyear":22.99,"secondyear":21.88,"thirdyear":21.88,"fourthyear":22.99,"fifthyear":21.88}]);
    }
}

しかし、私のコンセプトはクリアされていないと思います。どんな体でもそれを行う方法を教えてください。

12
Amit Sharma

レコードタイプを定義し、作成して、次に例を示す必要があります。

TaskLocation = Ext.data.Record.create([
    {name: "id", type: "string"},
    {name: "type", type: "string"},
    {name: "type_data", type: "string"},
    {name: "display_value", type: "string"}
]);

次に:

var record = new TaskLocation({
    id: Ext.id(),
    type: "city",
    type_data: "",
    display_value: "Brighton"
});

次に:

my_store.add(record);
my_store.commitChanges();

データがストアにあるときまでに、データを送信したときと同じ形式ではなく、代わりにRecordオブジェクトにあることを覚えておいてください。

16
Lloyd

JsonStoreのrecordTypeプロパティを参照してください。これは、問題のストアのレコードコンストラクターとして使用できる関数です。次のように使用します。

var newRecord = new myStore.recordType(recordData, recordId);
myStore.add(newRecord);
6
Roy Tinker

私はこれに対する簡単な解決策も考え出しました:

listeners: {
    load: function( xstore ,  record , option ) {
        var u = new xstore.recordType({  jfields : 'monthly'  });
        xstore.insert(record.length, u);
    }
}

ここで追加する必要があるのは、このリスナーです。データが読み込まれるとレコードタイプが作成され、フィールドを必要な数のデータとして追加できます。

5
Amit Sharma