URL のある動画再生ページ
/watch/video_id
、私はNGアプリを持っていました。ディレクティブを以下に示します。
app.directive('myApp', function() {
return {
restrict: 'E',
templateUrl: 'ng-templates/myTemplate.html',
link: function(scope, elem, attrs) {
},
controller: 'Controller'
};
});
templateUrl は相対パスであるため、次の場所でテンプレートを見つけようとします。
「/watch/ng-templates/myTemplate.html」
これはエラーです。
すべてのテンプレートを ng-templates フォルダーに入れたい。ただし、ng アプリが常に相対パスを検索する場合は機能しません。「/ng-template/myTemplate.html」を探すようにアプリを構成する方法はありますか?