做者:匿名用户
连接:https://www.zhihu.com/question/325397290/answer/708418099
来源:知乎
vue
那 vue 呢?它连 HOC 都没有,render props 更不现实(jsx自带)
const DefaultButton = { props: { text: String }, template: `<button>{{text}}</button>` } function wrap(comp) { return { components: { comp }, template: `<comp text="123"/>` } } new Vue({ components: { TextButton: wrap(DefaultButton) }, template: `<text-button />` })
2. HOC + render propsreact
const DefaultButton = { props: { renderText: Function }, render(h) { return h('button', this.renderText()) } } function wrap(comp) { return { render(h) { return h(comp, { attrs: { renderText: () => "123" } }) } } } const textButton = wrap(DefaultButton) new Vue({ render(h) { return h(textButton) } })
react 的不可变,纯函数。直接致使 hooks 必须使用 const 关键字,不能是 let,这也是 hooks 的奇迹之一
const
keyword 和 "不可变,纯函数" 有什么关系, 若使用 let、var, 是否不能实现hook?函数
请问怎么用逻辑推理出这条链?学习
2. 对于你回答中的事实性错误, 你持什么见解?this
不知道有没有正确理解你说的“移除一个属性”:
spa
onst DefaultButton = { props: { renderText: Function }, render(h) { return h('button', this.renderText()) } } function omitRenderText(comp, render) { return { render(h) { const { renderText, ...others } = this.$attrs return h(comp, { attrs: { ...others, renderText: render || renderText } }) } } } const textButton = omitRenderText(DefaultButton, () => "000") new Vue({ render(h) { return h(textButton, { attrs: { renderText: () => "123" } }) } })
若是你以为这篇文章对你仍是有很大帮助的话,不介意的话能够加下我刚刚创建的一个学习交流群,有不少相关资料和学习视频:907694362code