sencha のモデルでデータ フィールドの 1 つを一意のフィールドとして作成するソリューションを探していますが、ドキュメントが見つかりません。ここにコードがあります
Ext.define('handfree.model.CategoryM', {
extend: 'Ext.data.Model',
requires: [
'Ext.data.identifier.Uuid'
],
config: {
fields: [
{ name: 'id', type: 'int' },
{ name: 'name', type: 'string' }
],
idProperty: 'id',
identifier : 'uuid'
}
});
「名前」フィールドを一意にする必要があります。どうもありがとうございました!