如何为bindings.input
编写jsdoc,以便在PhpStorm中收到类型提示?我尝试过以下jsdoc,我通常用变量注释我的变量,但它不起作用。
angular.component('Card', {
controller : [
CardController
],
bindings : {
/** @type {MyType} */
/** @param {MyType} input */
input: '<'
}
});
我知道在控制器功能中我可以重新分配变量,但它有气味:
/** @type {MyType} */
this.annotatedInput = this.input
答案 0 :(得分:0)
这有时有效/** @type {MyType} */
。我无法想到为什么有时。