1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 bearcat 0.3.4 发布 -- 优化依赖注入写法 下载

本帖由 漂亮的石头2014-12-31 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    486,020
    赞:
    46
    在 0.3.4 版本中,依赖注入的描述,可以更加的随意,不再强制要求必须是 this.$xxId 的形式

    以下的写法也支持

    var Car = function() {
    this.$id = "car";
    this["$engine"] = null; // use []
    var wheelName = "$wheel";
    this[wheelName] = null; // use variable
    };

    Car.prototype["$light"] = null; // use variable in prototype

    Car.prototype.run = function() {
    this.$engine.run();
    this.$light.shine();
    this.$wheel.run();
    console.log('car run...');
    }

    module.exports = Car;

    example demo complex_function_annotataion
    bearcat官网 bearcatjs.org
    bearcat 0.3.4 发布 -- 优化依赖注入写法下载地址
     
正在加载...