使用 W3C 验证 Vue 语法
Validating Vue syntax with W3C
我正在学习这门课程,在那里我可以自由 select 一个框架来构建一个简单的应用程序。但是,我们将使用 W3C 验证程序验证 HTML。
我不知道怎么做。 W3C 验证器不支持特定于 Vue 的内容。错误如:
Attribute v-for not allowed on element div at this point.
Attribute :key not allowed on element div at this point.
无处不在。这只是一行代码。
<div v-for="mov in movie" :key="mov.id">
我是做错了什么,还是我傻了还是怎么的?我究竟如何在 Vue 中使用 W3C 验证器?或者任何其他具有偏离属性的框架(想想 React 中的“类名”)。
请注意,必须使用 W3C 验证器 ,不能使用其他类型的验证器。
谢谢!
是我傻
马丁·比恩评论道:
And who’s mandated this? Vue templates are not HTML. They’re, well, Vue templates. They’ll get compiled to HTML, so you’ll need to validate the resultant HTML; not the template that is parsed by Vue.
问题的解决方案是什么,或者您现在可能希望如何解决。
我正在学习这门课程,在那里我可以自由 select 一个框架来构建一个简单的应用程序。但是,我们将使用 W3C 验证程序验证 HTML。
我不知道怎么做。 W3C 验证器不支持特定于 Vue 的内容。错误如:
Attribute v-for not allowed on element div at this point.
Attribute :key not allowed on element div at this point.
无处不在。这只是一行代码。
<div v-for="mov in movie" :key="mov.id">
我是做错了什么,还是我傻了还是怎么的?我究竟如何在 Vue 中使用 W3C 验证器?或者任何其他具有偏离属性的框架(想想 React 中的“类名”)。
请注意,必须使用 W3C 验证器 ,不能使用其他类型的验证器。
谢谢!
是我傻
马丁·比恩评论道:
And who’s mandated this? Vue templates are not HTML. They’re, well, Vue templates. They’ll get compiled to HTML, so you’ll need to validate the resultant HTML; not the template that is parsed by Vue.
问题的解决方案是什么,或者您现在可能希望如何解决。