有没有办法获取 Blogger 中当前帖子的 URL?
我需要一些分享按钮的帖子 URL。有办法找回吗?谢谢
I need the post URL for some Share buttons. Is there a way to retrieve it? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过布局数据标记检索帖子网址:
data:post.url
如果您只想将其值作为文本插入模板中,请将其用作标签:
如果要对 html 属性使用标记值,请在 html 属性前面添加前缀 expr,例如:
You can retrieve the post URL via a layout data tag:
data:post.url
If you just want to insert its value as text in your template, use it as tag:
<data:post.url>
If you want to use a tag value for a html attribute, precede the html attribute with the prefix expr, for example:
我在我的博客(www.it.itmrk.com)中使用了以下脚本,该脚本对我有用。
它相应地给出了每个帖子的链接。它也可能对你有帮助。
I Used below script in my blog (www.it.itmrk.com), which is working for me.
Its give link of each post accordingly. It might help full for you also.
您必须创建一个表达式,然后命名元数据,并将您将拥有的值放在引号中。这样,博主就知道什么将表达式转换为“div”的元数据
示例代码:
You must create an expression, then name the metadata, and in quotation marks the value that you will have. In this way, blogger knows what convets the expression to metadata of the "div"
example code: