微前端架构如何改变企业的开发模式与效率提升
690
2022-10-08
第一种方式:使用form表单将前端数据提交到servelt(将前端数据提交到servlet)
第二种使用Ajax的形式将前台的数据传输到后台
form表单
引入了bootstrap格式。
需要导入相应的文件
form表单中的action:写使用注解的地址:我这边servelt的注解是@WebServlet("/login") 然后form表单中的action应该填写actinotallow="login"。 注意:在input输入框中要写上name属性,否则后端获取不到前端传入的数据。
<%-- Created by IntelliJ IDEA. User: 郑 Date: 2021/9/14 Time: 17:59 To change this template use File | Settings | File Templates.--%><%@ page cnotallow="text/html;charset=UTF-8" language="java" %>
一级验证
二级验证
后端使用注解的形式使用servlet 有些idea可能没有servlet这个选项:需要在pom.xml文件中导入依赖
导入之后就可以选择
package com.zheng.controller;import javax.servlet.*;import javax.servlet.javax.servlet.annotation.*;import java.io.IOException;@WebServlet("/login")public class StudentServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doPost(request,response); } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setCharacterEncoding("utf-8"); String id=request.getParameter("id"); String pwd=request.getParameter("pwd"); System.out.println("传入的用户id"+id); System.out.println("传入的用户密码"+pwd); }}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~