小编典典

使用ng-include时失去作用域

javascript

我有这个模块的路线:

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.lineTextundefined,这可以通过添加解决ng- controller="HomeCtrl"partial1.html,但它会导致控制器被调用两次。我在这里想念什么?


阅读 466

收藏
2020-04-25

共1个答案

小编典典

这是因为ng- include它会创建一个新的子范围,因此$scope.lineText不会更改。我认为这this是指当前范围,因此this.lineText应设置。

2020-04-25