每个环境的angularjs模板位置更改

时间:2018-07-24 13:53:01

标签: angularjs angularjs-directive

我有一个使用指令的有角js应用程序。在我的代码的本地副本中,在我的其他环境上,模板的位置为{rootsite} / content / html / {view},模板的位置为{rootsite} / {additionalName} / content / html / {view }。

我希望能够轻松维护代码,所以我不想在环境之间进行任何更改。有帮助的东西吗?

app.directive('directiveName', function () {
    return {
        templateUrl: '/Content/html/pageName.html',
        restrict: 'AE',
        multiElement: true,
        scope: {
        },
        link: function (scope, elem, attrs) {
        }
    }
});

0 个答案:

没有答案