继承人我的根:
.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未定义