我正在使用prerender.io使用无头的chrome渲染角度6页。问题在于渲染器无法渲染路由器链接,并且链接信息会丢失。
鉴于渲染的目的是SEO,这尤其成问题。
例如,具有[routerLink] =“ previewLink”的按钮将呈现为没有路由器链接的按钮。
这是一个生动的例子
没有链接的呈现页面
https://prerender.io/raw-html?url=https%3A%2F%2Fwww.fiveabook.com%2Fbooks&adaptiveType=desktop
“预览”按钮中没有href且没有路由器链接:
<button _ngcontent-c12="" color="accent" mat-button="" tabindex="0" class="mat-button mat-accent ng-star-inserted"><span class="mat-button-wrapper">
带有路由器链接的角度页面
https://www.fiveabook.com/books
按钮具有动态生成的路由器链接。
答案 0 :(得分:1)
如果我直接在Mac上的Chrome浏览器中加载https://www.fiveabook.com/books并寻找该按钮,那么我也看不到href:
因此,看起来我们呈现的页面与普通Chrome浏览器呈现的页面完全相同。
答案 1 :(得分:1)
HTML按钮没有href属性。如果要生成超链接按钮,只需使用 anchor元素。
<a mat-button [routerLink]="...">
Link
</a>