超级愚蠢的问题,但是我无法使其工作,我们如何从同一Controller
内的另一个函数调用函数?我使用sencha架构师。
这是我的控制器,我有一个监听器和一个函数,我想从监听器调用generateField
函数
Ext.define('Medlemssystem.controller.MemberOrganisationController', {
extend: 'Ext.app.Controller',
views: [
'LocalOrgPanel'
],
onLocalOrganisationInfoAfterRender: function(component, eOpts) {
main_id = component.up('#memberTab').main_id;
component.removeAll();
Ext.Ajax.request({
url: 'OrganizationCustomFieldServlet',
method: 'GET',
dataType: 'json',
params: {
"operation" : "get",
"org_id" : main_id
},
success: function(response) {
var result = Ext.decode(response.responseText);
result.forEach(function(n) {
component.add(generateField(n.customField.name));
});
},
failure: function() {
console.log('woops');
}
});
},
generateField: function(name, type, id, required, description) {
var field = Ext.create("Ext.form.field.Text", {fieldLabel:name});
return field;
},
init: function(application) {
this.control({
"LocalOrgPanel": {
afterrender: this.onLocalOrganisationInfoAfterRender
}
});
}
});
当我致电component.add(generateField(n.customField.name));
时,我收到“找不到功能”错误
答案 0 :(得分:3)
onLocalOrganisationInfoAfterRender: function(component, eOpts) {
之后
粘贴var that = this;
然后component.add(that.generateField(n.customField.name));
答案 1 :(得分:2)
另一种方法是为ajax请求回调设置范围。
喜欢这个
Ext.Ajax.request({
url: 'OrganizationCustomFieldServlet',
method: 'GET',
dataType: 'json',
params: {
"operation" : "get",
"org_id" : main_id
},
success: function(response) {
console.log(this); //<-- scope here is Window by default, unless scope is set below
},
failure: function() {
console.log('woops');
},
scope :this //<-- Sets the controller as the scope for the success call back
});