V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
shin
V2EX  ›  Node.js

express 4 这句源码怎么解释?

  •  
  •   shin · 2014-06-17 23:03:12 +08:00 · 3440 次点击
    这是一个创建于 3594 天前的主题,其中的信息可能已经有所发展或是发生改变。
    // set .cache unless explicitly provided
    opts.cache = null == opts.cache
    ? this.enabled('view cache')
    : opts.cache;


    express 4.x application.js app.render()方法中的设置。
    8 条回复    2014-06-30 13:49:38 +08:00
    ijse
        1
    ijse  
       2014-06-17 23:14:18 +08:00   ❤️ 1
    除非明确指定是否启用cache, 默认启用cache
    shin
        2
    shin  
    OP
       2014-06-17 23:24:52 +08:00
    @ijse

    可否这样理解?
    opts.cache = (null == opts.cache) ? this.enabled('view cache') : opts.cache;

    如果上文 opts.cache 为 undefined,则opts.cache = this.enabled('view cache');

    然后this.enabled('view cache')返回this。

    则opts.cache = this; 通过上下文可知this为application对象。
    kfll
        4
    kfll  
       2014-06-18 10:56:41 +08:00 via Android
    enabled 返回的是布尔值
    ijse
        5
    ijse  
       2014-06-18 12:32:23 +08:00
    @shin 就是除非明确指定禁用cache,否则都将启用cache
    hegfirose
        6
    hegfirose  
       2014-06-18 13:26:02 +08:00
    var cacheOption = (null == opts.cache) ? this.enabled('view cache') : opts.cache;

    opts.cache = cacheOption;

    如果没有设置 opts.cache (opts.cache 为 undefined, undefined == null),则获取 this.enabled('view cache') 的值,否则直接使用 opts.cache 设置的值

    赋值的时候先执行 = 右边的运算
    cyr1l
        7
    cyr1l  
       2014-06-20 00:50:42 +08:00
    opts.cache = null == opts.cache? this.enabled('view cache'): opts.cache;

    opts.cache = (null == opts.cache? this.enabled('view cache'): opts.cache;)

    opts.cache = ((null == opts.cache)? this.enabled('view cache'): opts.cache;)

    coffee :
    opts.cache = if opts.cache then this.enabled('view cache') else opts.cache

    JavaScript:
    opts.cache = if (null == opts.cache){
    return this.enabled('view cache');
    }else{
    return opts.cache
    }
    ChiChou
        8
    ChiChou  
       2014-06-30 13:49:38 +08:00
    为何不写成

    opts.cache = opts.cache || this.enabled('view cache');
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1081 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 18:41 · PVG 02:41 · LAX 11:41 · JFK 14:41
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.