【发布时间】:2020-01-22 21:22:50
【问题描述】:
如何发送像数组这样的表单数据
看下面的代码,我不能在product_attribute中设置索引['index must be here']['key']
<tr v-for="index in attributes">
<td class="text-left">
<input type="text" name="product_attribute['index must be here']['key']" value="" placeholder="attribute" class="form-control" autocomplete="off">
</td>
<td class="text-left">
<div class="input-group">
<textarea name="product_attribute['index must be here']['value']" rows="5" cols="70" placeholder="text" class="form-control"></textarea>
</div>
</td>
</tr>
【问题讨论】:
标签: javascript html vue.js vuejs2 vue-component