ExtJS6 模型没有为动态参数形成正确的代理 url
模型看起来像
Ext.define('Testt.model.User', {
extend: 'Ext.data.Model',
fields: ['id', 'name'],
proxy: {
type: 'ajax',
api : {
read : 'api/user/:id',
create : 'api/user',
update : 'api/user/:id',
destroy : 'api/user/:id'
},
reader : {
type : 'json'
},
writer : {
type : 'json'
}
}
});
现在,当调用加载用户记录时
Testt.model.load(27, { success: function(rec){console.log(rec)}})
它不会替换:id
为实际的 27