使用带有ngUplaod的select标签发布表单

时间:2014-03-08 14:34:49

标签: angularjs

我正在使用指令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。

有什么想法吗?

0 个答案:

没有答案