我已經在controller.js.的一個作用域中存儲了一個值,以便在html文件中獲取該作用域值。如何獲取從controller.js文件中的值到angularjs中的html文件
Controller.js
myAppCont.controller('Listvalue',['$scope','$rootScope','$http',
function($scope,$rootScope,$http){
city=$scope.val;
}]);
HTML
<div class="col-md-10" ng-controller="Listvalue">
<table class="table table-bordered table-style" id="statusTable">
<thead>
<tr>
<th>values</th>
</tr>
</thead>
<tbody class="align-center">
<tr>
<td>{{city}}</td>
</tr>
</tbody>
</table>
</div>
@Divakar檢查樣本 – Sajeetharan