Angular UIB-bootstrap typeahead更新表单但数据不可用

时间:2017-03-28 05:36:03

标签: angularjs angular-ngmodel bootstrap-typeahead

我创建了ng-repeat产品行列表。

  1. 每行包含一个包含typeahead
  2. 的搜索字段
  3. 如果成功,它一直是,继续填写其余表格
  4. 当我尝试保存此表单时,我的问题就开始了,无论我做什么,价值都没有被捕获。我能做些什么来实现这个目标?

    <tr ng-repeat="item in vm.invoiceProducts" >
     <td>
      <input type="text" ng-model="item"
        uib-typeahead="item as item.name for item in
        vm.searchinvoiceProducts($viewValue)">
    
         <textarea   ng-model="item.description" 
           ng-model-options="{ getterSetter: true }" >
        </textarea>
    

0 个答案:

没有答案