4

Angularjsアプリ(Facebook、Twitter、Google +)でいくつかのソーシャルボタンを使用しています。これらのボタンをメインのindex.htmlページに含めると、問題なく表示されます。ただし、それらをパーシャルに含めてからこのパーシャルに移動すると、まったく表示されません。どうしてこれなの?ng-viewを使用してindex.html内の部分を含めています。

これは、閉じるbodyタグのすぐ上に含めることになっているfb、twitter、g+ボタンのスクリプトです。これはindex.htmlにあります

<!-- Facebook -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=269163553107202";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<!-- Google Plus - Place this tag after the last +1 button tag. -->
<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>     
<!-- Pinterest -->
<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>

ボタン自体は私のshare.html部分にあります。

<li class="facebook">
    <img src="/img/icon-facebook.png" alt="facebook"/>
    <div style="margin: 0 auto; display: block" class="fb-like" data-href="{{url}}" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
</li>
<li class="twitter">
  <img src="/img/icon-twitter.png" alt="twitter">
  <a style="width: 77px;" href="https://twitter.com/share" class="twitter-share-button" data-url="{{url}}" data-via="slowfoodnation" data-hashtags="">Tweet</a>
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</li>
<li class="google-plus">
  <img src="/img/icon-google-plus.png" alt="google plus"/>
  <!-- Place this tag where you want the +1 button to render. -->
  <div class="g-plusone" data-size="medium" data-annotation="none" data-href="{{url}}"         </div>
</li>
4

1 に答える 1

5

コメントで説明されているように(ただし、ここで繰り返されるため、この質問は「未回答」リストに表示されません):jQueryがロードされていること、およびAngularの前にロードされていることを確認してください。

jqLit​​e」(AngularによるjQuery機能のサブセットの実装)は<script>、ng-includeされたパーシャルのタグを処理できません。jQueryが(Angularの前に)ロードされている場合、AngularはjqLit​​eの代わりにjQueryを使用します。jQueryは<script>、ng-include'dパーシャルのタグを処理できます。

于 2013-01-17T23:43:22.197 に答える