我在 Ext 中看到了一些示例(现在无法再次找到它),应该可以像我在下面的 push 函数中那样为视图提供参数。如果这在 Sencha 2 中也是可能的,我如何在视图中检索这个值?
var saveResponse = account.save({
success: function(model, operation) {
console.log('The Account was created, response: '+model);
loginview.push({
xtype: 'adultmenulist',
adult: model
});
},
failure: function(model, operation) {
....
}
});