我已经和AngularJS合作了几天了,如果我不需要任何东西,我就宣布两条指令有效。但我需要ngModel
使用$setViewValue
方法。
我的指示如下:
<corina>
<properties data-ng-repeat="property in Properties"></properties>
</corina>
指令的定义如下:
var Application = Application || {};
;(function(window, document, undefined) {
"use strict";
var CorinaJSDialog = {};
Application.CorinaJSDialog = angular.module("CorinaJSDialog", ["ngSanitize"]);
Application.CorinaJSDialog.constant("CorinaJSAPI", {
document : {
load : "/corina/api/loaddocument",
save : "/corina/api/savedocument"
}
});
Application.CorinaJSDialog.directive("corina", ["$timeout", function($timeout){
var object = {
restrict : "E",
require : "ngModel",
transclude : true,
replace : true,
priority : 1,
templateUrl : "corina.html",
controller : function($scope) {},
link : function(scope, element, attrs, controller) { console.log(controller); }
};
return object;
}]);
Application.CorinaJSDialog.directive("properties", ["$timeout", function($timeout){
var object = {
restrict : "E",
require : "?corina",
transclude : true,
replace : true,
priority : 2,
terminal : true,
templateUrl : "properties.html",
controller : function($scope) {},
link : function(scope, element, attrs, controller) {
var loadXeditable = function() {
$(element).editable({
mode: "inline",
display: function(value) {
controller.$setViewValue(value);
scope.$apply();
$(this).html(value);
}
});
};
$timeout(function() {
loadXeditable();
}, 10);
}
};
return object;
}]);
})(window, document);
加载的模板:
corina.html
:
<div>
<div data-ng-transclude></div>
</div>
properties.html
:
<div>
<div class="row">
<span class="span4">{{property.Name}}</span>
<div class="span8">
<a href="#" data-type="{{property.Type | lowercase}}" data-ng-model="property.Value" data-name="{{ property.Name }}" data-placeholder="{{ property.Value }}">
<span data-ng-bind-html="{{ property.Value.toString() }}"></span>
</a>
</div>
</div>
</div>
每次运行上面的内容我都会收到此错误:
Error: No controller: ngModel
at Error (<anonymous>)
at i (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:41:165)
at l (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:43:252)
at https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:47:425
at https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:96:330
at h (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:78:207)
at https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:78:440
at Object.e.$eval (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:89:272)
at Object.e.$digest (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:87:124)
at Object.e.$apply (https://ajax.googleapis.com/ajax/libs/angularjs/1.1.3/angular.min.js:89:431) <div data-ng-transclude=""> angular.min.js:62
另外,如果我需要像^mydir
这样的指令,我会得到相同的错误,或者只是喜欢mydir
。只有当我使用?mydir
时我才会收到错误,但是我不能使用ngModule
指令。我会很感激我对错误的看法。
答案 0 :(得分:3)
在我解释它时,你有两个元素指令,corina
和properties
,其中properties
想要来自corina
的控制器。这将永远失败,因为它们需要在require: 'corina'
的同一元素上才能工作。但我现在在您的模板中看到properties
位于corina
内,因此您应该在properties
中执行的操作是:require : "^?corina"
。这告诉Angular也要在父元素中寻找corina控制器。
要求ngModel
中的corina
无效,因为未在corina元素上设置ng-model
。您的ng-model
是在corina
替换模板中的元素上设置的,因此corina
指令无法获取该ngModelController。您只能从同一元素或父元素而不是子元素中请求控制器。如果您真的需要ngModelController
,那么您应该在ng-model
并且需要ngModelController
的同一元素上添加您自己的指令。该指令可能需要corina
控制器(因为corina
控制器位于父元素上)并将ngModelController
传递给corina
控制器。
但我不确定你为什么要在这里首先使用ng-model
?你把它放在一个不会做任何事情的锚元素上。在锚元素上使用ng-model
之后会产生什么影响?