こんにちは、読んでくれてありがとう。
私は角度のあるアプリを作成していますが、問題に遭遇しました。そのように設定
index.html-
<html ng-app="myApp">
...
<div ng-view></div>
<div ng-include="'footer.html'"></div>
...
</html>
とてもシンプルな /home は /home/index.html などを示しています...
/home/index.html (サイトにアクセスしたときのデフォルト ビュー)
<div class="responsive-block1">
<div class="tweet-me">
<h1> tweet me </h1>
</div>
<div class="twitter-box">
<twitter-timeline></twitter-timeline>
</div>
Twitter タイムライン ディレクティブ
directives.directive("twitterTimeline", function() {
return {
restrict: 'E',
template: '<a class="twitter-timeline" href="https://twitter.com/NAME" data-widget-id="XXXXXXXXXXXXXX">Tweets by @NAME</a>',
link: function(scope, element, attrs) {
function run(){
(!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"));
console.log('run script');
};
run();
}
};
});
これで、twitter のタグを使用して基本的な twitter ディレクティブを作成できました。しかし、ビューの例を /blog に変更してから /home に戻ると、Twitter ウィジェットがまったくレンダリングされなくなります。
$anchorScroll も使用していますが、これを使用してページ上でとにかくジャンプすると、ウィジェットも消えます。どんな情報でもありがとう。