이 모듈 경로가 있습니다.
var mainModule = angular.module('lpConnect', []).
config(['$routeProvider', function ($routeProvider) {
$routeProvider.
when('/home', {template:'views/home.html', controller:HomeCtrl}).
when('/admin', {template:'views/admin.html', controller:AdminCtrl}).
otherwise({redirectTo:'/connect'});
}]);
홈 HTML :
<div ng-include src="views.partial1"></div>
partial1
HTML :
<form ng-submit="addLine()">
<input type="text" ng-model="lineText" size="30" placeholder="Type your message here">
</form>
HomeCtrl
:
function HomeCtrl($scope, $location, $window, $http, Common) {
...
$scope.views = {
partial1:"views/partial1.html"
};
$scope.addLine = function () {
$scope.chat.addLine($scope.lineText);
$scope.lines.push({text:$scope.lineText});
$scope.lineText = "";
};
...
}
이 addLine
함수 $scope.lineText
는 undefined
에 추가 ng-controller="HomeCtrl"
하여 해결할 수 partial1.html
있지만 컨트롤러가 두 번 호출됩니다. 내가 여기서 무엇을 놓치고 있습니까?