gpt4 book ai didi

javascript - Vue 组合 API : Is there a better way in calling `emit` inside consumable file?

转载 作者:行者123 更新时间:2023-12-04 00:53:15 26 4
gpt4 key购买 nike

访问 emit 的正确方法(或更好的方法)是什么?在分离的逻辑文件中?
这就是我目前所做的工作:
foo.js

export default (emit) => {
const foo = () => { emit('bar') };
return { foo };
}
然后在消费组件上:
import { defineComponent } from '@vue/composition-api';
import foo from './foo';

export default defineComponent({
setup(props, { emit }) {
const { foo } = foo(emit);
return { foo };
}
});
但我想知道是否有更合适的方法来做到这一点?或者调用 emit 是一种不好的做法?在消耗品文件中?

最佳答案

您可能已经找到了解决方案,但如果您尝试类似的方式(如最初提出的问题),则有一个名为 getCurrentInstance 的选项具有发射器(Composition API has one too 的 Vue 2 插件)。

import { getCurrentInstance } from 'vue';

export default () => {
const { emit } = getCurrentInstance();

const foo = () => {
emit('bar');
};

return { foo };
}
但请记住,这仅适用于调用具有 SetupContext 的函数/组件。 .
编辑
上述解决方案适用于 Vue 3,但适用于较早版本的 Vue + Composition API plugin ,但有细微差别:与 Instance Properties 的其余部分一样,您必须在它前面加上 $成为 $emit . (下面的示例现在假设 Typescript 作为目标语言,如评论中所述)。
import { getCurrentInstance } from '@vue/composition-api';

export default () => {
// Ugly workaround, since the plugin did not have the `ComponentInstance` type exported.
// You could use `any` here, but that would defeat the purpose of having type-safety, won't it?
// And we're marking it as `NonNullable` as the consuming components
// will most likely be (unless desired otherwise).
const { $emit, ...context } = getCurrentInstance() as NonNullable<ReturnType<typeof getCurrentInstance>>;

const foo = () => {
$emit.call(context, 'bar');
};

return { foo };
}
然而,对于 Vue 3 的 Composition API,他们确实有这个 ComponentInternalInstance 接口(interface)导出。
附:最好坚持将实例分配给变量的老式方法并执行 context.$emitvm.$emit而不必为所有内容明确指定上下文。我最初提出这个想法时没有意识到这些实例属性可能是供内部使用的,而下一个组合 API 并非完全如此。

关于javascript - Vue 组合 API : Is there a better way in calling `emit` inside consumable file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64753071/

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