一个submit能提交多个action嘛? 我描述的详细一点:比如一个JSP页面,既要用户填基本信
我描述的详细一点:比如一个JSP页面,既要用户填基本信息,如名字,密码等,还要他上传文件,处理这些动作肯定不能放在一个action里,但是只有一个提交按钮,该怎么处理,请描述的详细一点!谢谢! 展开
一个submit能提交多个action嘛?
你还不清楚Form和 action tag的区别
Forms are those ones being Submitted not the 'action' defined inside forms.
Submit 会根据你在 Form tag 中定义的 'action'所对应的值去找对应的 ' Action '
@RequestMapping("/loginSubmit") in different controller classes (for Spring)
Go to struts.config file to search the <action> tag that matches the value defined in your JSP files (for Struts 1.x)
处理这些动作肯定不能放在一个action里,但是只有一个提交按钮,该怎么处理?
action is a attruibute defined inside form tag of JSP files,
你的那些需要输入的用户名密码和上传的文件是要作为 <input> tag 相对独立存在于 form中的, 他们的多少和具体位置和决定下一步去哪的 action本身没有关系
能再具体一点嘛?
Ingore those tr td tags, simply put everything you need to get from User input into tags.
Username
Password
Then in you controller layer,
String username = req.getParameter("username");
String password = req.getParameter("password");