在 Pure Components 中使用 Render Props 会有什么问题?
What are the problems of using render props with pure components?
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: Performance
标签: PureComponent, render props, shallow compare
参考答案摘要
答案 如果你在 render 方法里创建函数,会抵消 Pure Component 的优势。因为浅比较(shallow prop comparison)对于新的 props 总会返回 false,而每次 render 都会生成新的 render prop 值。 你可以通过将 render 函数定义为实例方法(instance method)来解决这个问题。
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。