所以我想爲我的側欄內容添加一個ng-include,但它不起作用。ng-include使用範圍變量不起作用
app.js
...
gvhsApp.controller('MainController', function($scope) {
$scope.template = 'views/mainSidebar.html';
});
的index.html
...
<div class="col-md-4">
<div ng-include src="template"> </div>
</div>
我沒有看到我的鉻控制檯的任何錯誤。可能是我沒有正確指向文件位置?
編輯:
目錄結構
app/
js/
app.js
views/
index.html
templates/
mainSidebar.html
build/
js/
app.js
views/
index.html
mainSidebar.html
構建目錄是在我的服務器看着
你可能需要做的:'
' – xbonez 2014-10-30 02:07:10