美文网首页
react native ref

react native ref

作者: proud2008 | 来源:发表于2016-12-10 17:09 被阅读221次

    1、

    <Image
        ref={(tag)=>{this.image=tag;}}
        source={{uri: 'http://avatar.csdn.net/5/B/3/1_cryhelyxx.jpg'}}
        style={{width:this.state.width,height:this.state.height}}
        />
    

    使用 this.imges

    2、

      <Image
          ref="image"
          source={{uri: 'http://avatar.csdn.net/5/B/3/1_cryhelyxx.jpg'}}
          style={{width:this.state.width,height:this.state.height}}
          />
       
    

    使用this.refs.image

    学习代码: https://git.oschina.net/proud2008/ReatcNativeStudy.git

    相关文章

      网友评论

          本文标题:react native ref

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