提问人:Rakesh Hiray 提问时间:3/17/2023 更新时间:3/17/2023 访问量:32
Angular:获取 html 解析错误。自动将一些“_ng..”空属性渲染到 html 中
Angular: Getting html parsing errors. Auto rendering some '_ng..' empty attributes into the html
问:
Angular:获取 html 解析错误。自动将一些“_ng..”空属性渲染到 html 中。
我正在将 angular 生成的 html 检查到“https://validator.w3.org/nu/”html 检查器中。我收到与 WCAG 相关的解析错误。
例如,错误:
1) <a _ngcontent-ljv-c35="" class="innerlink">
2) <div _ngcontent-ljv-c35="" class="centered">
我在每个组件中尝试了以下代码片段:
@component({
selector: "app-test",
templateUrl: "./test.component.html",
styleUrls: ["./test.component.css"],
encapsulation: ViewEncapsulation.None
})
但它没有解决上面的html解析错误。请为我提供解决方案。
答: 暂无答案
评论