美文网首页
React 'Refs'

React 'Refs'

作者: 韦卓凡 | 来源:发表于2018-07-30 06:45 被阅读0次

    ref 有两种 ref 方式

    1. ref = ''string" //string
    2. ref = {this.saveInputRef} //function
    // lib/math.js
    export function sum(x, y) {
      return x + y;
    }
    export var pi = 3.141593;
    var num = 3.141593;
    
    // app.js
    import * as math from "lib/math";
    alert("2π = " + math.sum(math.pi, math.pi));
    
    // otherApp.js
    import {sum, pi} from "lib/math";
    alert("2π = " + sum(pi, pi));
    // Some additional features include export default and export *:
    
    // lib/mathplusplus.js
    export * from "lib/math";
    export var e = 2.71828182846;
    export default function(x) {
        return Math.log(x);
    }
    

    一个文件只能有一个default

    // app.js
    import ln, {pi, e} from "lib/mathplusplus";
    alert("2π = " + ln(e)*pi*2);
    

    将default function 命名为 ln

    相关文章

      网友评论

          本文标题:React 'Refs'

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