我正在使用指令ngUpload来发布带有fileupload的表单。 https://github.com/twilson63/ngUpload
如果你有一个如下所示的输入标签,那么带有输入值的“name”将被发布到服务器。
<input type="text" name="pr_title" ng-model="product.pr_title" class="form-control" id="title" placeholder="Ex: Eagle">
但是当我选择标签时它不起作用:
<select class="form-control" ng-model="subcategory" name="subcategory" ng-options="s.sc_title for s in subcategories"></select>
文档中没有示例如何使用select。
有什么想法吗?