We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
比如在studentList.jsp的263行中,通过搜索按钮的监听事件获取到了studentname和clazzname的属性值。我想知道它是如何将值提交给controller的?在哪里调用了getStudentList()? pers.huangyuhui.sms.controller.StudentController.getStudentList(Integer page, Integer rows, String studentname, String clazzname)方法中的 page和 rows又是从前端的哪里获取到值的呢?
The text was updated successfully, but these errors were encountered:
first step : input the value of studentname and clazzname https://github.com/YUbuntu0109/sms-ssm/blob/fc31def843db8c3bc5dd9311c7883ec69a72bd45/sms/src/main/webapp/WEB-INF/view/student/studentList.jsp#L331-L352
studentname
clazzname
second step : get the value of studentname and clazzname ( please pay attention to the attribute of #dataList ) https://github.com/YUbuntu0109/sms-ssm/blob/fc31def843db8c3bc5dd9311c7883ec69a72bd45/sms/src/main/webapp/WEB-INF/view/student/studentList.jsp#L263-L269
#dataList
third step : send the request to the controller https://github.com/YUbuntu0109/sms-ssm/blob/fc31def843db8c3bc5dd9311c7883ec69a72bd45/sms/src/main/webapp/WEB-INF/view/student/studentList.jsp#L31-L41
page
rows
the specified code be shown as below : https://github.com/YUbuntu0109/sms-ssm/blob/fc31def843db8c3bc5dd9311c7883ec69a72bd45/sms/src/main/webapp/WEB-INF/view/student/studentList.jsp#L45
https://github.com/YUbuntu0109/sms-ssm/blob/fc31def843db8c3bc5dd9311c7883ec69a72bd45/sms/src/main/webapp/WEB-INF/view/student/studentList.jsp#L65-L72
Sorry, something went wrong.
No branches or pull requests
比如在studentList.jsp的263行中,通过搜索按钮的监听事件获取到了studentname和clazzname的属性值。我想知道它是如何将值提交给controller的?在哪里调用了getStudentList()?
pers.huangyuhui.sms.controller.StudentController.getStudentList(Integer page, Integer rows, String studentname, String clazzname)方法中的 page和 rows又是从前端的哪里获取到值的呢?
The text was updated successfully, but these errors were encountered: