Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个 javascript 框架,该框架需要 HTML 中的自定义属性...而 Aptana 将其显示为无效(带下划线)且没有描述。我想添加其中一些,这可能吗?
阻止编辑器显示我所做的属性警告的快速修复是:转到 Windows > Preferences > Aptana Studio > Validation > HTML Tidy Validator > Attributes。然后将“专有属性”设置为忽略。
您可以为 AngularJS 属性和指令添加前缀data-,它们仍然可以工作。例如:
data-
<body data-ng-app="app" > <div data-ng-controller="TestController"> <span test-directive> {{test}} </span> </div> </body>
这是JSFiddle来检查一下。
以这种方式认为 Aptana 会将属性视为有效,但您必须验证这一点。
要手动添加属性,请查看此答案。