JSX本质
2021-01-25 14:12
标签:lda raw position sed bsp end 变量 node ops 1.JSX的使用 {this.state.name} {this.state.flag ? ‘yes‘ : ‘no‘} 我的头像 设置 css class 设置 style 设置 style {rawHtml} JSX 中加载一个组件 2. JSX最终出来的是什么,是通过React.createElement函数来实现的,它的参数是怎么样的,最终返回的结果是什么,最终通过patch来渲染 JSX本质 标签:lda raw position sed bsp end 变量 node ops 原文地址:https://www.cnblogs.com/zhuMother/p/13236095.htmlclass JSXBaseDemo extends React.Component {
constructor(props) {
super(props)
this.state = {
name: ‘xiaoming‘,
imgUrl: ‘https://img1.mukewang.com/5a9fc8070001a82402060220-140-140.jpg‘,
flag: true
}
}
render() {
// 获取变量 插值
const pElem =