-1
我是角js的新手。我有要求我將數據庫的值爲user.html。在這個頁面(user.html)中,我需要調用details.html,所以我使用ng-include標籤來調用details.html。在調用時我需要將一些值傳遞給details.html,這個值將是動態的,這個動態值我需要傳遞details.html。通過ng-include標籤傳遞值
實施例:
RouteManager.js:
.when('/mydetails',
{
templateUrl : "./client/assets/views/user.html",
controller : "MyDetailsController"
})
user.html:
<div ng-include="'client/assets/views/details.html'" {{here i need to pass two parameters }}></div>
details.html:
<h1>{{need to display that two parameters}}</h1>
注意:對於details.html沒有控制器。我們需要沒有控制器。