当前位置:   article > 正文

web前端新手总结(一):前、后端是如何进行数据交互的?_购物网站前后端如何链到一起

购物网站前后端如何链到一起

web后端和前端是怎么连接的? 

网站数据处理主要分为三层。
第一层,表示层,这部分可以用HTML代码,CSS/Javascript代码来实现等。通过前端代码可以实现网页的布局和设计。这层又可以称为显示层。也就是你用浏览器打开能看到的网页。
第二层,是业务层,这层是负责处理数据的。常用的代码语言有PHP,JSP,Java等。通过这些后台处理语言的算法来处理前台传回的数据。必要的时候进行操作数据库,然后把结果返回给前端网页。
第三层,是数据层,这个就是数据库,用来存储数据的。通过业务层的操作可以实现增删改数据库的操作。
举个例子就是这样,比方说你在网页上填一个表格然后提交会有以下几种数据传输经过:
①你接触到的是这个网页是属于表示层,这个网页一般由HTML标签结合CSS/JAVASCRIPT来实现的。 这时候你要先填入数据。
②然后你按提交触发后台处理机制,这时候数据会传到后台的代码进行处理。这部分代码根据不同网站可以使PHP,JSP,JAVA等。 代码根据程序员预设的算法将收到的数据进行处理之后会相应的对数据库进行操作,存储数据等。
③成功操作完数据库之后,业务层的代码会再向表示层也就是显示器端传回一个指令通知你表格填写成功

从前端向后台传递参数方法

一、通过表单传递参数

1.前端部分,在前端jsp页面设置form表单,确定需要传递的参数name让用户输入,通过点击按钮后submit()提交到后台

  1. <form id="loginform" name="loginform" action="<%=path %>/login" method="post">
  2. <div class="form-group mg-t20">
  3. <i class="icon-user icon_font"></i>
  4. <input type="text" class="login_input" id="sfzh" name="sfzh" placeholder="请输入用户名" />
  5. </div>
  6. <div class="form-group mg-t20">
  7. <i class="icon-lock icon_font"></i>
  8. <input type="password" class="login_input" id="pwd" name="pwd" placeholder="请输入密码" />
  9. </div>
  10. <div class="checkbox mg-b25">
  11. <label>
  12. <!-- <input type="checkbox" />记住密码 -->
  13. </label>
  14. <span style="color: red;" id="error">
  15. <%
  16. String message = (String)request.getAttribute("message");
  17. if(StringUtils.isNotBlank(message)){
  18. %><%=message %><%
  19. }
  20. %>
  21. </span>
  22. </div>
  23. <button id="login" type="submit" style="submit" class="login_btn">登 录</button>
  24. </form>

2.后台对前端请求的反应,接收数据,处理数据以及返回数据。

  1. @RequestMapping(method=RequestMethod.POST)
  2. public String dologin(String sfzh, String pwd, RedirectAttributes redirectAttributes){
  3. User query = new User();
  4. query.setUserAccount(sfzh);
  5. HttpSession session = HttpSessionUtil.getHttpSession();
  6. List<User> userlist = userService.select(query);

二.通过ajax传递参数(有post和get写法)

1.ajax是如何将前端数据传到后台的

  1. function leftmenu(parentid, parentpath,moduleindex){
  2. var leftcontent="";
  3. $.ajax({
  4. type: "POST",
  5. url : "<%=path%>/resource/usermenus",
  6. data : {parentid:parentid,parentpath:parentpath},
  7. success : function(data){
  8. // 处理head menu是否有页面要打开
  9. leftcontent= template('_menu2tmpl',data);
  10. $('.nav').html(leftcontent);
  11. addclick();
  12. //临时点击显示菜单
  13. if($('.index-left-warp').width()==0){
  14. $(".index-left-show").hide();
  15. $(".index-left-warp").animate({width:"200px"},250);
  16. timer=setTimeout(function(){
  17. tabsResize();
  18. },500);
  19. };
  20. $(".nav").accordion({
  21. //accordion: true,
  22. speed: 500,
  23. closedSign: '<img src="<%=path%>/images/menu_close.png"/>',
  24. openedSign: '<img src="<%=path%>/images/menu_open.png"/>'
  25. });
  26. }
  27. });
  28. }

$.ajax({

                         type: "POST",//type是ajax的方法

                        url : "<%=path%>/resource/usermenus",//参数url,要把参数传到什么地方

                        data : {parentid:parentid,parentpath:parentpath},//传递什么数据

                        success : function(data){//sucess表示,当数据返回成功后要怎么做,返回的数据存储在data

2.后台对前端请求的反应,接收数据

  1. @ResponseBody
  2. @RequestMapping(value = "usermenus")
  3. public Map<String, Object> usermenus(String parentid, String parentpath) {
  4. UserDetail user = HttpSessionUtil.getSessionUser();
  5. String appadmin = Config.getInstance().getCustomValue("app.admin");
  6. List<Resource> list = null;
  7. if(user.getUserAccount().equals(appadmin)){
  8. // 系统内置管理员 默认获取全部授权
  9. list = resourceservice.queryAllMenuCascade(parentpath);
  10. }else{
  11. list = resourceservice.queryUserMenuCascade(user.getId(), parentpath);
  12. }
  13. // 初始化根节点
  14. Resource root= new Resource();
  15. root.setId(parentid);
  16. Collections.sort(list, new Comparator<Object>() {
  17. public int compare(Object o1, Object o2) {
  18. Resource resource1 = (Resource) o1;
  19. Resource resource2 = (Resource) o2;
  20. if (resource1.getSort() > resource2.getSort()) {
  21. return 1;
  22. }
  23. if (resource1.getSort() < resource2.getSort()) {
  24. return -1;
  25. }
  26. //如果返回0则认为前者与后者相等
  27. return 0;
  28. }
  29. });
  30. // 组装Tree
  31. return RecDHTree(root,list);
  32. }

3.再看看前端接收到后端返回的数据是如何处理的

  1. function leftmenu(parentid, parentpath,moduleindex){
  2. var leftcontent="";
  3. $.ajax({
  4. type: "POST",
  5. url : "<%=path%>/resource/usermenus",
  6. data : {parentid:parentid,parentpath:parentpath},
  7. success : function(data){
  8. // 处理head menu是否有页面要打开
  9. leftcontent= template('_menu2tmpl',data);
  10. $('.nav').html(leftcontent);
  11. addclick();
  12. //临时点击显示菜单
  13. if($('.index-left-warp').width()==0){
  14. $(".index-left-show").hide();
  15. $(".index-left-warp").animate({width:"200px"},250);
  16. timer=setTimeout(function(){
  17. tabsResize();
  18. },500);
  19. };
  20. $(".nav").accordion({
  21. //accordion: true,
  22. speed: 500,
  23. closedSign: '<img src="<%=path%>/images/menu_close.png"/>',
  24. openedSign: '<img src="<%=path%>/images/menu_open.png"/>'
  25. });
  26. }
  27. });
  28. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/864034
推荐阅读
相关标签
  

闽ICP备14008679号