gpt4 book ai didi

javascript - Ember _ 如何从组件 Controller 访问 Controller 操作

转载 作者:太空宇宙 更新时间:2023-11-04 15:37:47 26 4
gpt4 key购买 nike

我正在尝试向 ember 组件添加一些外部功能。该组件如下:

应用程序/模板/程序员.hbs

{{echo-hlabel-tf 
id= "id-test-hlabel"
class="class-test-hlabel-mio"
label="Horizontal textfield"
textValue="..."
regExp="^([a-z0-9]{5})$"
errorMsg="Text hasn't five characters"
fnActionButtonClicked = "sayHello"
}}

我正在使用参数 'fnActionButtonClicked' 。此参数表示它执行的函数,并且它不在组件的功能范围内(例如将 javascript 函数作为参数传递)。我是新手,我不知 Prop 体的 ember 方法来做到这一点。组件的模板是:

应用程序/模板/组件/echo-hlabel-tf.hbs

<div id="echo-hlabel-tf">
<span id="{{id}}-echo-hlabel-tf-label"
class="{{class}}-echo-hlabel-tf-hlabel">
{{label}}
</span>
<span id="{{id}}-echo-hlabel-tf-value"
class="{{class}}-echo-hlabel-tf-value">
{{input id='input-id' class='input-class' value=textValue
focus-out = (action 'validateRegExp' textValue regExp)
}}
</span>
<span id="{{id}}-echo-hlabel-tf-error-msg"
class="{{class}}-echo-hlabel-tf-error-msg">
<p id='error-msg' class="error-msg">
{{errorMsg}}
</p>
</span>

<div>
<h2>Testing passing functions to the component</h2>
<input type="button" {{action "actionButtonClicked"}}/>
</div>
</div>

正如您所看到的,在模板的底部,有一个输入 type="button",它与 "actionButtonClicked"绑定(bind)。该组件的 Controller 是:

应用程序/组件/echo-hlabel-tf.js

import Ember from 'ember';

export default Ember.Component.extend({
classNameBindings:['error'],
error:false,

actions: {
validateRegExp(text,regExpStr,event){
let regExpObj = new RegExp(regExpStr)
if(regExpObj.test(text)){
this.set('error',false);
}else{
this.set('error',true);
}
},
actionButtonClicked(){
console.log('Arrives to the component');
var action = this.get('fnActionButtonClicked');
console.log(action);
// How can I call the function in another controller
// With parameter fnActionButtonClicked name
}
}
});

因此,模板 'fnActionButtonClicked' (SayHello) 的参数将通过 var action = this.get('fnActionButtonClicked) 在 actionButtonClicked() 中检索'); .

那么,这个时候,疑问就来了。由于我无法将 javascript 函数作为模板的参数传递(或者至少,我认为这不是正确的做法),因此我创建了一个 Controller 'sampleController' 来创建操作 'sayHello' (请参阅参数 fnActionButtonClicked 值),代码如下:

应用程序/ Controller /sample-controller.js

从“ember”导入 Ember;

export default Ember.Controller.extend({
actions:{
sayHello(){
console.log("I'm saying hello this time");
}
}

});

我怎样才能从app/components/echo-hlabel-tf.js:actionButtonClicked()执行app/controls/sample-controller.js:sayHello()的代码?如何从组件 Controller 访问另一个 Controller ?这是实现我的目标的正确方法吗?

提前致谢

最佳答案

您需要为特定路由程序员创建 Controller ,而不是sample-controller.js。所以创建app/controllers/programmers.js文件,

export default Ember.Controller.extend({
actions:{
sayHello(){
console.log("I'm saying hello this time");
}
}
})

以及组件内部app/components/echo-hlabel-tf.js

actionButtonClicked(){
console.log('Arrives to the component');
this.sendAction('fnActionButtonClicked');
}

关于javascript - Ember _ 如何从组件 Controller 访问 Controller 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44159566/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com