在带有闭包操作的 Ember 中,您可以传递一个函数,如下所示:
1
<div class="dropzone text-center" {{action (action openFilePicker)}}>
<!-- this calls a function (no quotes!) -->
</div>
而不是调用一个动作,如下所示。
2
<div class="dropzone text-center" {{action (action 'openFilePicker')}}>
<!-- this calls an action (quotes!) -->
</div>
在 (1) 中,支持此组件的代码如下所示:
openFilePicker: function () {
let child = this.$('div:first-child');
child.removeClass('is-dragging');
child.html('<h2>Upload GPX Route</h2><div class="dropzone-body-text"><h5>Drag and Drop here</h5>- or -<h5>click anywhere here</h5></div>');
filepicker.pick({
container: 'modal',
maxSize: (5 * 1024 * 1024),
services: ['COMPUTER']
});
}
这使用 JQuery 从 DOM 中删除一些元素,然后调用外部加载的 JS 文件中的另一个函数 (filepicker.pick)。
在 (2) 中,相同的代码在一个动作中:
actions: {
openFilePicker: function () {
let child = this.$('div:first-child');
child.removeClass('is-dragging');
child.html('<h2>Upload GPX Route</h2><div class="dropzone-body-text"><h5>Drag and Drop here</h5>- or -<h5>click anywhere here</h5></div>');
filepicker.pick({
container: 'modal',
maxSize: (5 * 1024 * 1024),
services: ['COMPUTER']
});
}
}
这样做有什么好处和坏处?我知道 (1) 不是这样做的推荐方式,但肯定 (1) 可以更轻松地访问其他代码component
(例如组件的属性)。像往常一样,Ember
文档似乎没有对此有所了解(无论如何我都找不到)。我能找到的只是这篇博文,它强调不鼓励调用任意函数(否则为什么首先要有动作?)
因此,尽管这个问题可能会导致意见,但这不是我所追求的。我想了解SCOPING
这两种方法有什么区别?例如,当你在函数 INSIDE 动作内部时,从 JS 运行时的角度来看,范围有什么区别?例如,在这两种情况下,“这”是一样的吗?