使用 AlpineJS 在循环中动态设置输入字段的名称属性
Dynamically set name attribute of input field in loop with AlpineJS
我想在 AlpineJS 循环中设置隐藏输入字段的 name
属性。我已经尝试 x-bind:name
但那不起作用。
我认为这行不通,因为 x-model
如何添加待办事项:
<input x-model="todoText" type="text">
<button x-on:click.prevent="addTodo('new', todoText)">
Add
</button>
如何使下面的工作正常进行,以便将 todos
数组中的索引键设置为 todoSingle.id
值?
<template x-for="todoSingle in todoArray" :key="todoSingle.id">
<input type="hidden" name="todos[todoSingle.id][id]" x-model="todoSingle.id">
<input type="hidden" name="todos[todoSingle.id][type]" x-model="todoSingle.type">
<input type="hidden" name="todos[todoSingle.id][description]" x-model="todoSingle.description">
</template>
更新
Codepen here。如果您添加了一个待办事项,然后返回到输入字段并键入,您会看到在每个按键上都添加了相同的待办事项。
您需要将 x-bind:name
与模板字符串一起使用:
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][id]`" x-model="todoSingle.id">
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][type]`" x-model="todoSingle.type">
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][description]`" x-model="todoSingle.description">
见固定Codepen
我想在 AlpineJS 循环中设置隐藏输入字段的 name
属性。我已经尝试 x-bind:name
但那不起作用。
我认为这行不通,因为 x-model
如何添加待办事项:
<input x-model="todoText" type="text">
<button x-on:click.prevent="addTodo('new', todoText)">
Add
</button>
如何使下面的工作正常进行,以便将 todos
数组中的索引键设置为 todoSingle.id
值?
<template x-for="todoSingle in todoArray" :key="todoSingle.id">
<input type="hidden" name="todos[todoSingle.id][id]" x-model="todoSingle.id">
<input type="hidden" name="todos[todoSingle.id][type]" x-model="todoSingle.type">
<input type="hidden" name="todos[todoSingle.id][description]" x-model="todoSingle.description">
</template>
更新
Codepen here。如果您添加了一个待办事项,然后返回到输入字段并键入,您会看到在每个按键上都添加了相同的待办事项。
您需要将 x-bind:name
与模板字符串一起使用:
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][id]`" x-model="todoSingle.id">
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][type]`" x-model="todoSingle.type">
<input type="hidden" x-bind:name="`todos[${todoSingle.id}][description]`" x-model="todoSingle.description">
见固定Codepen