如何将自动完成标签输入值存储在范围变量中以发送到 angularjs 中的数据库?
How to store autocomplete tags input value in scope variable to be sent to database in angularjs?
我是 angularjs.I 的新手 html page.I 中有一个自动完成标记需要将选定的值存储在变量中,以便可以将其发送到数据库。
建议一种方法吗?
js
var app = angular.module("myApp",
['ui.bootstrap','ui.utils','ngTagsInput','ngMaterial', 'ngMessages',
'material.svgAssetsCache'
]);
app.controller("myCtrl",function($scope, $http, $mdDialog) {
$scope.tags = [];
HTML
<tag-manager tags="tags"
autocomplete="allTags"
caption="Select tag "> </tag-manager>
JS
var app = angular.module("myApp",['ui.bootstrap','ui.utils','ngTagsInput','ngMaterial', 'ngMessages',
'material.svgAssetsCache']);
app.controller("myCtrl",function($scope, $http, $mdDialog) {
$scope.tags = [];
$scope.allTags = ['item1','item2','item3','item4'];
});
此处选定的项目将存储在 $scope.tags
中,这可以传递给您的 $http
调用。
我是 angularjs.I 的新手 html page.I 中有一个自动完成标记需要将选定的值存储在变量中,以便可以将其发送到数据库。 建议一种方法吗?
js
var app = angular.module("myApp",
['ui.bootstrap','ui.utils','ngTagsInput','ngMaterial', 'ngMessages',
'material.svgAssetsCache'
]);
app.controller("myCtrl",function($scope, $http, $mdDialog) {
$scope.tags = [];
HTML
<tag-manager tags="tags"
autocomplete="allTags"
caption="Select tag "> </tag-manager>
JS
var app = angular.module("myApp",['ui.bootstrap','ui.utils','ngTagsInput','ngMaterial', 'ngMessages',
'material.svgAssetsCache']);
app.controller("myCtrl",function($scope, $http, $mdDialog) {
$scope.tags = [];
$scope.allTags = ['item1','item2','item3','item4'];
});
此处选定的项目将存储在 $scope.tags
中,这可以传递给您的 $http
调用。