0

我有一个文本框,我必须在其中显示从 api 获得的数组值,问题是,我用过这样

<input name="f" type="text" id="f" value=entries.f> 

并且我将值作为 ["V"] incase 的单个值和 ["V", incase 的多个值,那么我如何在文本框中显示数组值,如 V、N?

4

2 回答 2

1

这对你有用

 <input name="f" type="text" id="f" value="<%= entries.f %>">
于 2012-07-31T06:01:56.603 回答
0
<input name="f" type="text" id="f" value="<%= entries.f %>">

如果您将 Rails 与 ERB 一起使用,这可能会有所帮助

于 2012-07-31T05:56:39.233 回答