3

我像这样使用 og:description 元标记

<meta property="og:description" content="<%= @post.description.html_safe %>" />

但它会在页面顶部显示帖子的描述。

4

1 回答 1

1

我曾经在我的 php 代码中遇到过这个错误来显示 og 文件。我想,它会在rails中工作。你只是""变成''

<meta property="og:description" content='<%= @post.description.html_safe %>'/>

或者

<meta property="og:description" content='<%= @post.description %>'/>

我希望这对你有帮助。

于 2015-10-09T15:04:40.897 回答