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.
我有这样的表格:
<form> <textarea name="txtarea" cols="60" rows="20"></textarea><br/> <input type="submit" value="SUBMIT"/> </form>
在我的 Ruby CGI 脚本中。当用户在不使用 Ruby on Rails 的情况下单击提交按钮时,如何获取 txtarea 的值?谢谢
如果你真的需要使用 CGI,看看这个.
但是,如果您不是绝对需要 CGI,请使用Sinatra,它比 Rails 轻得多,但比 CGI 舒适得多。