我想在指令模板中使用tag-input。在下面的示例中,我们在指令的模板中使用输入文本框,我想使用tags-input
而不是输入框。请参阅以下代码,指令的内部模板
我正在使用Here Use tags-input: <input type="text" ng-model="modeldisplay" ></input>
,我想在这里使用tag-input:
为此包括以下lib
<script src="http://mbenford.github.io/ngTagsInput/js/ng-tags-input.min.js"></script>
// Code goes here
var app = angular.module("myApp", ['ngTagsInput']);
app.directive("myDirective", function(){
return {
restrict: "E",
template : '<h1>Click to choose!</h1><div class="clkm"'+
'ng-repeat="item in items" ng-click="updateModel(item)">{{item}}</div>' +
'Here Use tag-input: <input type="text" ng-model="modeldisplay" ></input>',
require: 'ngModel',
scope : {
items : "=",
modeldisplay:'= modeldisplay'
},
link : function(scope, element, attrs, ctrl){
scope.updateModel = function(item)
{
ctrl.$setViewValue(item);
scope.modeldisplay = item;
}
}
};
});
app.controller("appCtrl", function($scope){
$scope.items = [1,2,3,4,5,6];
$scope.bar = function(foo) {
$scope.aux = foo;
}
});
答案 0 :(得分:1)
在html中添加css和js:
<link rel="stylesheet" href="http://mbenford.github.io/ngTagsInput/css/ng-tags-input.min.css" />
<script src="http://mbenford.github.io/ngTagsInput/js/ng-tags-input.min.js"></script>
在代码中进行以下更改:
1.用scope.modeldisplay = item;
scope.modeldisplay.push({"text":item});
// Code goes here
var app = angular.module("myApp", ['ngTagsInput']);
app.directive("myDirective", function(){
return {
restrict: "E",
template : '<h1>Click to choose!</h1><div class="clkm"'+
'ng-repeat="item in items" ng-click="updateModel(item)">{{item}}</div>' +
'Here Use tag-input: <tags-input ng-model="modeldisplay" ></tags-input>',
require: 'ngModel',
scope : {
items : "=",
modeldisplay: "="
},
link : function(scope, element, attrs, ctrl){
scope.updateModel = function(item)
{
ctrl.$setViewValue(item);
scope.modeldisplay.push({"text":item});
}
}
};
});
app.controller("appCtrl", function($scope){
$scope.items = [1,2,3,4,5,6];
$scope.tags = [];
$scope.bar = function(foo) {
$scope.aux = foo;
};
});
答案 1 :(得分:0)
首先确保您要导入ngInputTags脚本:
<script src="http://mbenford.github.io/ngTagsInput/js/ng-tags-input.min.js"></script>
其次,您没有将ngInputTags注入模块。
var app = angular.module("myApp", ['ngTagsInput']);
执行这些操作,然后在模板中包含该标记: 得到结果。