我正在使用Typescript和Angular,尝试使用here下面的可访问图标指令(以及其他内容)使网站更易于访问。
module app.directives {
export class AccessibleIconDirective implements ng.IDirective {
priority = 0;
restrict = 'E';
scope: { name: '@', text: '@'};
template: '<i class="fa fa-{{name}}"></i><span class="invisible">{{text}}</span>';
}
}
Typescript编译器不喜欢隔离范围,并给出了以下错误。
accessibleIcon.ts(5,24): error TS1110: Type expected.
accessibleIcon.ts(5,27): error TS1005: ';' expected.
accessibleIcon.ts(5,35): error TS1110: Type expected.
accessibleIcon.ts(8,1): error TS1128: Declaration or statement expected.
我不确定如何在这个结构中给name: '@'
和text:'@'
一个类型,我不知道为什么TS想要在范围对象中使用分号,或者在模块。
我正在实现ng.IDirective接口,所以我希望它能够处理隔离范围。
有什么想法吗?谢谢!
供参考,这是angular.d.ts中的IDirective接口:
interface IDirective {
compile?: IDirectiveCompileFn;
controller?: any;
controllerAs?: string;
bindToController?: boolean|Object;
link?: IDirectiveLinkFn | IDirectivePrePost;
name?: string;
priority?: number;
replace?: boolean;
require?: any;
restrict?: string;
scope?: any;
template?: any;
templateNamespace?: string;
templateUrl?: any;
terminal?: boolean;
transclude?: any;
}
答案 0 :(得分:2)
当您使用:
时,您正在使用=
。这些应该是属性初始化器,而不是类型注释。
module app.directives {
export class AccessibleIconDirective implements ng.IDirective {
priority = 0;
restrict = 'E';
// fixed
scope = { name: '@', text: '@'};
// fixed
template = '<i class="fa fa-{{name}}"></i><span class="invisible">{{text}}</span>';
}
}