目前我正在一个非常可拓形式和使用的HTML它将使代码输入,文字区域,datepickers等等等等看起来很丑陋,也非常难以阅读。 事情是,我创建了返回正确的HTML元素如自定义指令:
在HTML
<suggest-input data-ng-model="EDCtrl.headerStep.provider.identification"
placeholder="'Ej. 888888-8'"
label="'Identificador de emisor'">
</suggest-input>
该指令:
var suggestInput = function ($compile, $http) {
return {
restrict: 'E',
require: 'ngModel',
templateUrl: templates + '/suggestInputTemplate.tpl.html',
replace: true,
scope: {
model: '=ngModel',
label: '=label',
title: '=title',
placeholder : '=placeholder'
},
};
};
模板
<div>
<label>{{ label }}</label>
<input class="form-control" data-ng-model="model" placeholder="{{ placeholder }}" call="functionName()"/>
</div>
而我在与使用的角度引导指令,我的自定义指令内部,例如问题:我怎样才能称之为“UIB-预输入”使用这种配置在我的自定义指令?
有任何想法吗 ?