美文网首页
react native 注释

react native 注释

作者: 牵着蜗牛散步Zz | 来源:发表于2017-10-20 09:22 被阅读0次

1、使用 // 作为注释要注意,注释内容必须不在任何html标签里,否则会当成要显示的文本内容。像下面这样无论注释打在哪里都会被当作文本显示出来。

<Text style={myStyle.textStyle} >
      // {this.state.text}
      {this.state.text.split(' ').map((word) => word && '1').join(' ')}
</Text>

这种情况如何注释:

<Text style={myStyle.textStyle} >
       {/* {this.state.text} */}
       {this.state.text.split(' ').map((word) => word && '1').join(' ')}
</Text>

相关文章

网友评论

      本文标题:react native 注释

      本文链接:https://www.haomeiwen.com/subject/dsumuxtx.html