如何创建提交的CGI::FormBuilder对象?
我有一个方法,它接受一个 cgi 对象并创建一个 CGI::FormBuilder 对象。如果提交,则进行数据库连接并处理数据,否则,预填充一些数据并呈现表单。
我想为它编写一个单元测试。因此,我想给它一个cgi对象,它将创建一个提交的表单并处理数据。
cgi中必须指定哪个参数才能提交表单?
提前致谢。
I have a method that takes a cgi object and creates a CGI::FormBuilder object. if it is submitted, does a db connection and process data otherwise, prepopulates some data and renders the form.
I want to write a unit test for it. Therefore, I want to give it a cgi object and it will create a submitted form and process data.
Which parameter must be specified in cgi to do form to be submitted?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参数是(提交的表单名称)_(表单名称)
Parameter is (submittedname_of_the_form)_(name_of_the_form)
可能您想要:
如 CPAN CGI 页面上所述
Probably you want:
As described on CPAN CGI page