无法使用 ngx-sharebuttons 将 URL 属性 绑定到 html 页面
Unable to bind a URL property to html page using ngx-sharebuttons
我从 firebase 的 rest api 收到动态 link。
social.ts
this.shareUrl = res.shortLink; //dynamic link is stored in this variable from the response.
现在我正尝试在 ngx-sharebuttons 使用的社交分享按钮上提供 this.shareUrl(short link)。
social.html
<share-buttons class="mb-2 mt-2" [theme]="'circles-dark'"
[include]="'facebook','twitter','whatsapp']" [show]="9" [url]="'this.shareUrl'">
</share-buttons>
我也试过了[url] = "{{this.shareUrl}}"
我想在 whatsapp、FB 广告推特上分享这个动态 link。如果有人可以帮助我解决此问题或分享社交分享的替代方案,我将不胜感激 link.
删除引号,否则您将绑定文字字符串:
[url]="this.shareUrl"
我从 firebase 的 rest api 收到动态 link。
social.ts
this.shareUrl = res.shortLink; //dynamic link is stored in this variable from the response.
现在我正尝试在 ngx-sharebuttons 使用的社交分享按钮上提供 this.shareUrl(short link)。
social.html
<share-buttons class="mb-2 mt-2" [theme]="'circles-dark'"
[include]="'facebook','twitter','whatsapp']" [show]="9" [url]="'this.shareUrl'">
</share-buttons>
我也试过了[url] = "{{this.shareUrl}}"
我想在 whatsapp、FB 广告推特上分享这个动态 link。如果有人可以帮助我解决此问题或分享社交分享的替代方案,我将不胜感激 link.
删除引号,否则您将绑定文字字符串:
[url]="this.shareUrl"