2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FacebookとTwitterの公式シェアボタンをSPAで表示する方法

Posted at

こういうやつです。

image.png

image.png

一般的なWebページでの導入方法はこちらです。

Facebook
https://developers.facebook.com/docs/plugins/share-button/?locale=ja_JP

Twitter
https://developer.twitter.com/en/docs/twitter-for-websites/tweet-button/overview.html

① bodyタグの末尾にSDKのコードを挿入して → ②ボタン本体のタグを埋め込む
という流れですが、SPAの場合このやり方をするだけでは動きません。

解決方法

ボタンを読み込みたい画面で、

Facebookの場合

FB.XFBML.parse();

Twitterの場合

twttr.widgets.load();

のメソッドを呼び出せばOKです。
タイミングはVueやReactを利用しているなら、コンポーネントライフサイクルを使うとよいでしょう。
(Vueならmounted(), ReactならcomponentDidMount()

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?