我可以在两个模板 URL 之间选择一个吗?就像是 :
angular.factory('SAMPLE',function(){
return {
getnDetails:function($http){
return $http({
method: 'GET',
url: url
});
}
)};
angular.directive() {
controller : function($scope) {
SAMPLE. getnDetails().sucess(){
}.error() {
templateURL: "zbx.html"
}
templateUrl : "xyz.html"
}
这样当我的 http 请求出错时,加载完全不同的模板。什么是最好的方法来做这样的事情。