Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
APIから取得した配列値を表示する必要があるテキストボックスがありますが、問題は、このように使用したことです。
<input name="f" type="text" id="f" value=entries.f>
単一の値の場合は["V"]として、複数の値の場合は["V"として値を取得します。テキストボックスにV、Nなどの配列値を表示するにはどうすればよいですか?
これはあなたのために働くでしょう
<input name="f" type="text" id="f" value="<%= entries.f %>">
これは、ERBでRailsを使用している場合に役立つ可能性があります