nodejs:我如何解析方法之上的注释?

时间:2016-02-05 12:16:46

标签: node.js ecmascript-6

我想在Symfony2 php-framework中声明方法之外的其他参数,它们应该是注释形式(带@符号),由注释包装。这样的事情:

class SomeController {

    constructor() {
        //
    }

    /*
    * @Secure(roles="admin")
    * @Cache(smaxage="15")
    */
    indexAction() {
        //
    }

};

我该怎么做?

0 个答案:

没有答案