未定義的錯誤嘗試初始化文本輸入框供用戶輸入,但得到的錯誤。 $ scope可以在取消註釋時設置intext。我已經解決這個砍死(排序的),但我失去了一些東西基本如常。angularjs - 從輸入文本字段
控制檯錯誤啓動:「錯誤:$ scope.intext未定義」除非我分配一個值。輸入框專門用於用戶輸入。也注意到我可以指定「爲什麼」,直到我試圖分裂沒有得到錯誤。
angular.module('myApp', [])
.controller('TextScreen', ['$scope', function($scope) {
//$scope.intext = "what";
var why = $scope.intext.split('-');
}]);
HTML
<div id="cont" ng-app="myApp">
<div ng-controller="TextScreen">
<input type="text" ng-model="intext" />
</div>
</div>
你想要做這樣的事情:http://jsfiddle.net/JFX23/? –