2015-07-06 108 views
2

我創建一個angular.js應用程序中嵌入一個HTML頁面。 我寫了一個HTML頁面,並希望使用指令如何使用角度指令

<div data-(<directive-name)> 
</div> 

DxPDictionary.directive('import', [function() { 
     return { 
      restrict: 'A', 
      templateUrl: 'template/Import.html', 
      scope: false, 
     } 

它不工作,把它放在格,是這樣計算策略是正確的還是應該用另一種方式來實現這一目標

+0

請你對你的指令 –

+0

的代碼,我也請再次檢查 –

回答

2
<body ng-controller="userCtrl"> 

    <div class="container"> 
     <div ng-include="'myUsersList.html'"></div> 
     <div ng-include="'myUsersForm.html'"></div> 
    </div> 

</body> 
0

使用這樣的。

<div data-directive-name> 
</div> 

DxPDictionary.directive('dataDirectiveName', [function() { 
     return { 
      restrict: 'A', 
      templateUrl: 'template/Import.html', 
      scope: false, 
     } 

您的指令名dataDirectiveName在駝峯格式指令定義和指令名字DOM 數據指令名應該匹配。

您可以使用ng-include如果你沒有創建一個使用指令可重用的組件,並希望用途是作爲頁面的HTML只。