我打破了我的头试图解决这个问题。假设我有这个自定义指令:
app.directive("selectInput",function($compile){
return {
restrict: "E",
templateUrl: 'js/angular-app/test.html',
scope: {
formName:'=',
inputName:"=",
nameInput: "@",
ngModel: "=",
},
transclude: true,
replace: true,
link: function(scope, element, attrs, ctrl) {
...
},
}});
这是我的templateurl test.html
<div
class="form-group"
ng-class="{'has-error has-feedback': formName.inputName.$invalid}">
<input type="text" name="{{nameInput}}" ng-model="ngModel"/></div>
和电话
<form name="form" class="simple-form" novalidate>
<select-input
form-name="form"
input-name="fClase"
name-input="fClase"
ng-model="inputmodel">
</select-input></form>
问题出在 test.html 模板中,表达式formName.inputName.$invalid
不起作用,我尝试{{formName}}.{{inputName}}.$invalid
并没有,我也尝试更改指令定义中的参数&, @ ... =?
。
我无法合并此表达式,感谢您的帮助。
更新,解决问题(感谢 Joe Enzminger):
最后,我通过以下方式更改指令:
app.directive("selectInput",function($compile){
return {
restrict: "E",
templateUrl: 'js/angular-app/test.html',
scope: {
inputName: "@",
ngModel: "=",
},
require: ["^form"],
replace: true,
link: function(scope, element, attrs, ctrl) {
scope.form = ctrl[0];
...
},
}});
注意表单 attr 为 ctrl。
模板 test.html
<div
class="form-group"
ng-class="{'has-error has-feedback': form[inputName].$invalid}">
<input type="text" name="{{nameInput}}" ng-model="ngModel"/></div>
这里formName.inputName.$invalid
改变form[inputName].$invalid
最后打电话
<form name="form" class="simple-form" novalidate>
<select-input
input-name="fClase"
ng-model="inputmodel">
</select-input></form>
我希望有用