2016-05-28 49 views
0

我已經在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> 

回答

0

你需要有控制器內部的$範圍變量,就做別的辦法

myAppCont.controller('Listvalue',['$scope','$rootScope','$http', 
function($scope,$rootScope,$http){ 
     $scope.city=val; 
}]); 

然後它會進行評估,並顯示在視圖

<td>{{city}}</td> 

工作Sample

+0

@Divakar檢查樣本 – Sajeetharan

0

角具有2個數據綁定原理。您與模型綁定的數據會反映在視圖中。

使用$ scope訪問相應控制器中的模型。

無論您希望綁定到視圖的數據應該通過$ scope。

在這種情況下,如果你有,已經存儲的數據在$scope.val

綁定,爲您的看法,

<td>{{val}}</td> 

這應該工作!

相關問題