0

为什么 ngModel 没有从 Controller 设置初始值?

示例: http: //plnkr.co/edit/sGFv4zpVtvpsmUx1c9F3

    angular.module('customControl', [])
  .directive('contenteditable', function() {
    return {
      restrict: 'A', // only activate on element attribute
      require: '?ngModel', // get a hold of NgModelController
      link: function(scope, element, attrs, ngModel) {
        if(!ngModel) return; // do nothing if no ng-model

        // Specify how UI should be updated
        ngModel.$render = function() {
          element.html(ngModel.$viewValue || '');
        };
      }
    };
  });

  function TestCtrl($scope) {
    $scope.userContent = 'It Works!!!!';
  }
4

1 回答 1

1

您为模块命名为“customController”,因此您还必须为 ng-app 命名。

改变<html ng-app>

<html ng-app="customControl">

它应该可以解决您的问题。

工作示例: http: //plnkr.co/edit/bVYavNKuwV9BjrDNz2Hm

于 2012-12-28T19:22:21.777 回答