0
有很多例子使用指令來創建angularjs的動態表單,但我試圖做一些不同的事情。是否有可能使用angularjs從web動態模板?
目前,我在我的js文件使用此:
.directive('myCustomer', function() {
return {
restrict: 'E',
templateUrl: 'my-customer.html'
};
});
這是我-customer.html
Name: {{customer.name}} Address: {{customer.address}}
如何請求從網絡這樣的templateUrl:
.directive('myCustomer', function() {
return {
restrict: 'E',
templateUrl: 'http://www.garsoncepte.com/my-customer.php'
};
});
工作示例可以在這裏看到:
http://plnkr.co/edit/U41xyBeeFXV7Osr7pI2Y?p=preview
很好謝謝。 – motto 2014-10-03 12:54:16