我经常需要关于煎茶问题的建议。我想用一个表格创建一个新的记录/模型——这真的很好。但是在回调中(保存记录后),我需要新保存的记录 ID——但该 ID 已经存在于数据库中——而我得到的是一个自动分配的 sencha ID,如“ext-record-465”。
代码如下:
型号:
Ext.define('aBMin.model.Ticket', {
extend : 'Ext.data.Model',
require : ['aBMin.model.Project', 'aBMin.model.Client'],
config : {
fields : [{
name : 'ticketid',
type : 'int'
}, {
name : 'clientid',
type : 'int'
}, {
name : 'projectid',
type : 'int'
}, {
name : 'subject',
type : 'string'
}, {
name : 'datecreated',
type : 'string'
}, {
name : 'datemodified',
type : 'string'
}, {
name : 'percentCompleted',
type : 'string'
}, {
name : 'ticketdesc',
type : 'string'
}, {
name : 'supportstaffid',
type : 'int'
}, {
name : 'timeestimate',
type : 'int'
}, {
name : 'eta',
type : 'date'
}, {
name : 'warrantysupport_yn',
type : 'string'
}, {
name : 'ourfault_yn',
type : 'string'
}, {
name : 'ticketstatusid',
type : 'int'
}, {
name : 'clientemailid',
type : 'int'
}, {
name : 'clientname',
type : 'string'
}, {
name : 'total',
type : 'int'
}],
idProperty : 'ticketid',
proxy : {
type : 'direct',
reader : {
type : 'json'
},
api : {
read : Ticket.readMobile,
update : Ticket.updateMobile,
create : Ticket.createMobile
}
},
associations : [{
type : 'belongsTo',
model : 'aBMin.model.Project',
primaryKey : 'projectid',
foreignKey : 'projectid',
associationKey : 'Project',
getterName : 'getProject'
}, {
type : 'belongsTo',
model : 'aBMin.model.Client',
primaryKey : 'clientid',
foreignKey : 'clientid',
associationKey : 'Client',
getterName : 'getClient'
}/*,{
type : 'belongsTo',
model : 'aBMin.model.TicketStatus',
primaryKey : 'ticketstatusid',
foreignKey : 'ticketstatusid',
associationKey : 'TicketStatus',
getterName : 'getTicketStatus'
}*/],
validations : [{
type : 'presence',
field : 'projectid'
}, {
type : 'presence',
field : 'subject',
}, {
type : 'presence',
field : 'clientid',
}, {
type : 'presence',
field : 'ticketdesc'
}, {
type : 'presence',
field : 'supportstaffid',
}, {
type : 'presence',
field : 'eta',
}, /*{
type : 'presence',
field : 'timeestimate',
}
,*/ {
type : 'presence',
field : 'ticketstatusid',
}]
}
});
控制器(创建方法):
case 'Create':
var estimatedtime = parseInt(this.getTicketViewEstymateHours().getValue()) * 60 + parseInt(this.getTicketViewEstymateMinutes().getValue());
record.set(form.getValues());
record.set('timeestimate', estimatedtime);
var validation_errors = record.validate().all;
if(!validation_errors.length) {
record.save({
success : function(record) {
if(record.get('clientemailid') != 0) glob.getEmailViewSubmitCreateTicket().setHidden(true);
Ext.getStore('Ticket').load();
Ext.getStore('TicketSF').load( {
params : {
clientid : record.get('clientid')
,filter : ''
,pagin_from : 0
,pagin_to : 10000
}
} );
getEmailViewTicketField.setValue(record.get('ticketid'));
nav.pop();
Ext.Msg.alert('MESSAGE', 'Ticket has been created.', Ext.emptyFn);
},
failure : function() {
Ext.Msg.alert('MESSAGE', 'Ticket has NOT been crated.', Ext.emptyFn);
});
}
else {
Ext.Msg.alert('MESSAGE', 'You have to fill all required fields', Ext.emptyFn);
for(itm in this.getTicketViewFieldset().getItems().items) {
this.getTicketViewFieldset().getItems().items[itm].removeCls("msg_baddatainputed");
}
for(err in validation_errors) {
for(itm in this.getTicketViewFieldset().getItems().items) {
if(this.getTicketViewFieldset().getItems().items[itm].getName() === validation_errors[err].getField()){
this.getTicketViewFieldset().getItems().items[itm].addCls("msg_baddatainputed");
}
}
}
}
break;
我尝试使用 record.load 方法,但要加载它,我需要我没有的 ID...任何想法如何刷新新创建的记录并从数据库中获取它的 ID?