在我的config file
中,我基本上有permalink: :inLink/:title/
,这使得以下事情成为可能:
https://example.com/hello/post-1
(=很好!)
因此,我的降价文件中的inLink = hello
。
现在我也有这行...
const post_url = config.get('page_url').replace('%SLUG%', event.slug)+'#comment-'+event.id;
这将呈现:
https://example.com/post-1
(=不好!)
因此inLink permalink variable hello
丢失了。
问题现在是在此行中如何/在何处添加inLink variable
…
const post_url = config.get('page_url').replace('%SLUG%', event.slug)+'#comment-'+event.id;
???
答案 0 :(得分:3)
在Ghost文档中,将page_url
指定为
Helper-输出列表中给定页面(即下一页)的URL {{pagination}}助手所需的分页模板中使用了该助手,以输出下一页,上一页或特定页面的URL。它需要一个包含您要输出的页码的变量。
帮助者还可以解释字符串“ next”和“ prev”,以在分页上下文之外显示下一个/上一个链接。
我认为您需要url,可能是绝对URL
类似:
"{{url absolute="true"}}"