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.
我想知道如何设置下拉菜单、复选框、单选按钮的数据类型。我使用 mysql 作为后端
感谢您的提前帮助
在 ruby 中,所有的东西,比如数字,字符串都是对象。我们不需要为变量指定任何数据类型。
例子-
<%= f.radio_button(:A_Impact_Value,1) %>
所以这里 A_Impact_Value 数据类型可以是 integer,boolean 。