如何将自动完成标记输入值存储在要发送到 angularjs 中的数据库的范围变量中



我是 angularjs 的新手。我的 html 页面中有一个自动完成标记。我需要将选择的值存储在变量中,以便可以将其发送到数据库。建议一种方法?

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调用。

相关内容

  • 没有找到相关文章

最新更新