我正在爲我的網站使用knockout.js組件。我想在我的一個組件中添加一個twitter按鈕。正如你可能知道的,twitter提供了一個可以使用腳本來做到的片段。如何在knockout js組件中添加twitter按鈕?
<a href="https://twitter.com/vishnu_narang" class="twitter-follow-button" data-show-count="false">Follow
@vishnu_narang</a>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
這段代碼應該使用iframe和其他小部件腳本所做的事情來添加twitter後續按鈕。
這適用於組件外。 例子:
<html>
<body>
// Snippet here will work as expected
</body>
</html>
但淘汰賽JS組件內,這是行不通的:
如:
<html>
<body>
<profile></profile>
</body>
</html>
// Profile template will be
<div>
//snippet for follow button here.
</div>
有人可以幫助我找到一種方法,成功地裏面添加一個按鈕,如下這樣的組件?
注意:我也在使用require.js和gulp。 Facebook像按鈕呈現罰款。
感謝。這工作。 –