我在 HBS 文件中有一个按钮。如何向链接到外部站点的按钮添加变量?
I have a button in an HBS file. how can I add a variable to the button that links to an external site?
所以我在 hbs 页面上有一个按钮。单击以将用户发送到从 json 响应中检索到的外部 link 时,我需要该按钮。我检查了 handlebars 文档,但它没有任何关于将 variable/external link 插入 hbs 按钮的内容。当我使用他们的代码时,我得到 this. that is technically the correct link but it doesn't work and also shouldn't look like. here's what I have so far which is mostly pulled from their docs。我梳理了他们的文档,但未能找到与此直接相关的任何内容。我想我可能需要找个帮手什么的,但我想在我掉进那个兔子洞之前听听你的想法
详情-page.hbs
<div>
!button[INSTALL]({{marketplaceURL}})
</div>
市场 url 在另一个文件中正确抓取。在图片中它显示正确的 link.
为什么不在“a”标签上使用 onclick
<a onclick="window.location = 'https://google.com'">Google</button>
并相应地设置样式。
所以我在 hbs 页面上有一个按钮。单击以将用户发送到从 json 响应中检索到的外部 link 时,我需要该按钮。我检查了 handlebars 文档,但它没有任何关于将 variable/external link 插入 hbs 按钮的内容。当我使用他们的代码时,我得到 this. that is technically the correct link but it doesn't work and also shouldn't look like. here's what I have so far which is mostly pulled from their docs。我梳理了他们的文档,但未能找到与此直接相关的任何内容。我想我可能需要找个帮手什么的,但我想在我掉进那个兔子洞之前听听你的想法
详情-page.hbs
<div>
!button[INSTALL]({{marketplaceURL}})
</div>
市场 url 在另一个文件中正确抓取。在图片中它显示正确的 link.
为什么不在“a”标签上使用 onclick
<a onclick="window.location = 'https://google.com'">Google</button>
并相应地设置样式。