Bootstrap标签输入在angularjs中对我不起作用。我尝试了一切,但没有,它只是添加了区域框,我甚至无法写入内容。
<bootstrap-tagsinput ng-model="currentInventory.tags" itemvalue="value" itemtext="text"></bootstrap-tagsinput>
答案 0 :(得分:0)
在Angular JS应用程序中包含bootstrap-tagsinput-angular.js和注册bootstrap-tagsinput
以使用bootstrap-tagsinput指令。
index.html
在您的模块中添加bootstrap-tagsinput
,如下所示:
angular.module('yourModule',[
'ngRoute',
'ngResources',
'bootstrap-tagsinput'
]);
答案 1 :(得分:-1)
在bootstrap-tagsinput中,您还需要指定typeahead-source,如example here所示。 更新了链接以代替上述功能不正常:Angular Example查找“AngularJS支持”部分,然后点击“显示代码”