如何在javascript中从jsx表单创建键值数组


<div className="form-group " >
<input type="text" 
className="form-control" 
placeholder="column_name" 
name="col" }
/>
</div>
<div className="form-group " >
<input type="number" 
className="form-control" 
placeholder="value" 
name="val" }
/>
</div>

我在JSX表单中有这两个字段。我想从这个form创建键、值对数组,占位符作为键,值作为键的值。

你可以像那样做

Codesandbox:https://codesandbox.io/s/adoring-cdn-x2w6r?file=/src/App.js

相关内容

  • 没有找到相关文章

最新更新