8

我最近从 Eclipse 切换到 Netbeans 7.4 IDE,想知道如何将自定义 Angular 指令添加到 html 验证器。

如果您在 html 文件中添加这样的内容:

<div>
    <my-directive></my-directive>
</div>

将显示一个错误,说明:

"Element "my-directive" not allowed as child of element "div" in this context."

我可以在 html 验证器中禁用“元素”属性以避免此错误,但我宁愿不这样做,因为它会抑制真正的错误。

4

1 回答 1

2

您可以为指令声明自定义命名空间,请参阅http://forums.netbeans.org/post-59359.html或定义自定义标签:http ://wiki.netbeans.org/CustomTagActions

于 2014-01-11T01:14:10.203 回答