KRL:在发射块中使用变形参数
我尝试在用户定义的操作中的发射块中使用参数,如下所示:
my_action = defaction(css_class) {
emit <| $K(css_class).append("<span>!!</span>"); |>
}
但是当运行时,您会看到控制台消息“css_class 未定义”。
如何设置参数以便可以在“emit”块中使用它?
I tried using a parameter in an emit block within a user defined action like this:
my_action = defaction(css_class) {
emit <| $K(css_class).append("<span>!!</span>"); |>
}
but when that runs you see a console message "css_class is not defined".
How do I set up the parameter so I can use it within the 'emit' block?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
存在偏差的环境问题仍在解决中。现在,只需将一个变量分配给您的参数,您的发射就会看到它。所以,像这样:
There is an environment issue with defactions that is still being resolved. Right now, simply assign a variable to your paramater and your emit will see it. So, something like this: