我的控制器无法识别ng-model

时间:2016-11-29 13:39:59

标签: angularjs controller angularjs-ng-model

继承人我的根:

 .when('/form', {
        templateUrl:'../MyApp/Inventaire/tmpl/inventaire.html',
        controller: 'inventaireCtrl'
    })

我的问题是,当我在控制器中设置范围变量时,我无法在我的视图中访问它,例如: 如果我设置$scope.myVariable='text'我无法在我的视图中访问它:{{myVariable}}它工作正常,但当我在我的视图中执行它时,我无法访问它,我的控制器示例:

<p>Select a car:</p>

<select ng-model="selectedCar">
    <option ng-repeat="x in cars" value="{{x.model}}">{{x.model}}</option>
</select>

<h1>You selected: {{selectedCar}}</h1>

控制器:

  $scope.cars = [
        {model : "Ford Mustang", color : "red"},
        {model : "Fiat 500", color : "white"},
        {model : "Volvo XC90", color : "black"}
    ];

selectedCar未定义

0 个答案:

没有答案