美文网首页
reactnative 数据深拷贝处理

reactnative 数据深拷贝处理

作者: 米开朗骑騾 | 来源:发表于2019-11-07 22:25 被阅读0次
    //导入组件 import Immutable from 'immutable';
    
    //从 JavaScript 数据生成不可变对象
    let imageSource = Immutable.fromJS(this.state.imgSource);
    let addImgArr = [];
    
    //从不可变数据生成 JavaScript 对象
    imageSource = imageSource.toJS()
    

    相关文章

      网友评论

          本文标题:reactnative 数据深拷贝处理

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