批量添加日期-AngularJS

时间:2018-11-07 19:47:02

标签: mysql angularjs codeigniter-3

我开始使用AngularJS。

他与CodeIgniter 3一起构建了一个小型应用程序。

我创建了CRUD,并且一切正常。

但是,我想添加一个文本区域,在其中我将以以下格式添加很多信息:

  1. link1.com
  2. link2.com
  3. link3.com

数据将进入数据库并保存为唯一记录。

我的AngularJS-代码:

$scope.noteCreated = function( note ){
    $http({
      method: 'POST', url: 'api/admin/notes/create/', data: {'note' : note}}
      ).then(function (){
        $scope.success = true;

        $timeout( function(){
          $scope.success = false;
          $scope.note = {};

        }, 2000);

   },function (error){
      console.log('Error');
   });
}

我的html代码:

<form ng-submit="noteCreated(note)">
    <div class="container">
        <div class="row">
            <div class="col-lg-12">
                <label>Note</label>
                <div text-angular="text-angular" ng-model="note.noted" required></div> 

                <select ng-model="note.id_domain_rel" chosen="directiveOptions" ng-options="item.id as item.domain_name for item in domain track by item.id" required><option value=""></option>
                </select> 
            </div>

    </div>
</div>
<button type="submit" class="btn btn-primary" ng-if="!success">Save</button>
<button type="button" class="btn btn-success" ng-if="success" disabled>Saved</button>
</form>

0 个答案:

没有答案