作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法理解 transferPropsTo
是为了读书the docs .
给出的示例如下所示:
var Avatar = React.createClass({
render: function() {
return this.transferPropsTo(
<img src={"/avatars/" + this.props.userId + ".png"} userId={null} />
);
}
});
// <Avatar userId={17} width={200} height={200} />
我看不出这和:
return (
<img src={"/avatars/" + this.props.userId + ".png"} />
)
还有什么我没有得到:
userId={null}
是什么?应该说明什么?<Avatar />
通过了 width=
和 height=
.做什么的?他们会怎样?最佳答案
transferPropsTo
方法用于将属性从一个对象复制到另一个对象,文档试图准确解释哪些属性被复制。
what's the
userId={null}
supposed to illustrate?
显式设置不会被 transferPropsTo
覆盖,所以它表明即使 userId
是在 Avatar
上设置的,不会被复制,因为 userId
在 img
上明确设置为 null。
Avatar is passed a width= and height=. What for? What happens to them?
这是“转移”到 img
的两个属性,因此该示例大致等同于:
return (
<img src={"/avatars/" + this.props.userId + ".png"} // explicit
userId={null} // explicit, not overwritten
width={this.props.width} // copied
height={this.props.height} // copied
/>
)
这与原始示例之间的区别在于构造 Avatar 的代码控制在 img
上设置哪些附加属性,而不是 Avatar
的渲染方法本身。
关于javascript - 理解 transferPropsTo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23732826/
我无法理解 transferPropsTo是为了读书the docs . 给出的示例如下所示: var Avatar = React.createClass({ render: function(
这是我试图渲染的 react 组件 var APP = React.createClass({ render: function () { return (
我是一名优秀的程序员,十分优秀!