请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

6-4节前后端联调,和老师的视频不一样,调不成功。message: "data is not defined"。

按照老师的视频进行调试,调试到第23行后,进入后端,后端代码运行完后,返回前端,并返回不到第24行代码,而是直接跳过了getShopInfo这个函数了。。。图片描述

报错:
图片描述

正在回答 回答被采纳积分+3

插入代码

3回答

慕沐1441344 2021-04-23 19:30:48

mark

0 回复 有任何疑惑可以回复我~
翔仔 2019-04-16 00:03:03

类似这样

1
2
alert("I am back");
if(data.success){

记得清空缓存

0 回复 有任何疑惑可以回复我~
翔仔 2019-04-13 21:53:05

同学好,感觉还是前端或者后端写错了,信息不足不好定位,直接复制粘贴我的替换你的修改下看看?

shopoperation.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
 
 */
$(function(){
    var initUrl = '/bsp/shopadmin/getshopinitinfo';
    var registerShopUrl = '/bsp/shopadmin/registershop';
    alert(initUrl);
    getShopInitInfo();
    function getShopInitInfo(){
        $.getJSON(initUrl,function(data){
            if(data.success){
                var tempHtml = '';
                var tempAreaHtml = '';
                data.shopCategoryList.map(function(item,index){
                    tempHtml += '<option data-id="' + item.shopCategoryId + '">'
                    + item.shopCategoryName+'</option>';
                });
                data.areaList.map(function(item,index){
                    tempAreaHtml += '<option data-id="' + item.areaId + '">'
                    +item.areaName +'</option>';
                });
                $('#shop-category').html(tempHtml);
                $('#area').html(tempAreaHtml);
            }
        });
        $('#submit').click(function(){
            var shop = {};
            shop.shopName = $('#shop-name').val();
            shop.shopAddr = $('#shop-addr').val();
            shop.phone = $('#shop-phone').val();
            shop.shopDesc = $('#shop-desc').val();
            shop.shopCategory = {
                    shopCategoryId : $('#shop-category').find('option').not(function(){
                        return !this.selected;                
                    }).data('id')
            };
            shop.area = {
                    areaId : $('#area').find('option').not(function(){
                        return !this.selected;                
                    }).data('id')
            };
            var shopImg = $('#shop-img')[0].files[0];
            var formData = new FormData();
            formData.append('shopImg',shopImg);
            formData.append('shopStr',JSON.stringify(shop));
            var verifyCodeActual = $('#j_captcha').val();
            if (!verifyCodeActual) {
                $.toast('请输入验证码!');
                return;
            }
            formData.append('verifyCodeActual',verifyCodeActual);
            $.ajax({
                url : registerShopUrl,
                type : 'POST',
                data : formData,
                contentType : false,
                processData : false,
                cache : false,
                success : function(data){
                    if(data.success){
                        $.toast('提交成功!');
                    }else{
                        $.toast('提交失败!' + data.errMsg);
                    }
                    $('#captcha_img').click();
                }
            });
        });
    }
})

ShopManagementController.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.sdyu.bsp.web.shopadmin;
 
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import org.springframework.web.multipart.commons.CommonsMultipartResolver;
 
import com.fasterxml.jackson.databind.ObjectMapper;
import com.sdyu.bsp.dto.ShopExecution;
import com.sdyu.bsp.entity.Area;
import com.sdyu.bsp.entity.PersonInfo;
import com.sdyu.bsp.entity.Shop;
import com.sdyu.bsp.entity.ShopCategory;
import com.sdyu.bsp.enums.ShopStateEnum;
import com.sdyu.bsp.exceptions.ShopOpreationException;
import com.sdyu.bsp.service.AreaService;
import com.sdyu.bsp.service.ShopCategoryService;
import com.sdyu.bsp.service.ShopService;
import com.sdyu.bsp.util.CodeUtil;
import com.sdyu.bsp.util.HttpServletRequestUtil;
 
@Controller
@RequestMapping("/shopadmin")
public class ShopManagementController {
    @Autowired
    private ShopService shopService;
    @Autowired
    private ShopCategoryService shopCategoryService;
    @Autowired
    private AreaService areaService;
 
    @RequestMapping(value = "/getshopinitinfo", method = RequestMethod.GET)
    @ResponseBody
    private Map<String, Object> getShopInitInfo() {
        Map<String, Object> modelMap = new HashMap<String, Object>();
        List<ShopCategory> shopCategoryList = new ArrayList<ShopCategory>();
        List<Area> areaList = new ArrayList<Area>();
        try {
            shopCategoryList = shopCategoryService.getShopCategoryList(new ShopCategory());
            areaList = areaService.getAreaList();
            modelMap.put("shopCategoryList", shopCategoryList);
            modelMap.put("areaList", areaList);
            modelMap.put("success"true);
        catch (Exception e) {
            modelMap.put("success"false);
            modelMap.put("errMsg", e.getMessage());
        }
        return modelMap;
    }
 
    @RequestMapping(value = "/registershop", method = RequestMethod.POST)
    @ResponseBody
    private Map<String, Object> registerShop(HttpServletRequest request) {
        Map<String, Object> modelMap = new HashMap<String, Object>();
        if (!CodeUtil.checkVerifyCode(request)) {
            modelMap.put("success"false);
            modelMap.put("errMsg""输入了错误的验证码");
            return modelMap;
        }
        // 1.接收并转化相应的参数,包括店铺信息以及图片信息
        String shopStr = HttpServletRequestUtil.getString(request, "shopStr");
        ObjectMapper mapper = new ObjectMapper();
        Shop shop = null;
        try {
            shop = mapper.readValue(shopStr, Shop.class);
        catch (Exception e) {
            modelMap.put("success"false);
            modelMap.put("errMsg", e.getMessage());
            return modelMap;
        }
        CommonsMultipartFile shopImg = null;
        CommonsMultipartResolver commonsMultipartResolver = new CommonsMultipartResolver(
                request.getSession().getServletContext());
        if (commonsMultipartResolver.isMultipart(request)) {
            MultipartHttpServletRequest multipartHttpServletRequest = (MultipartHttpServletRequest) request;
            shopImg = (CommonsMultipartFile) multipartHttpServletRequest.getFile("shopImg");
        else {
            modelMap.put("success"false);
            modelMap.put("errMsg""上传图片不能为空");
            return modelMap;
        }
         
 
        // 2.注册店铺
        if (shop != null && shopImg != null) {
            PersonInfo owner = new PersonInfo();
            // Session TODO
            owner.setUserId(1L);
            shop.setOwner(owner);
            ShopExecution se;
            try {
                se = shopService.addShop(shop, shopImg.getInputStream(), shopImg.getOriginalFilename());
                if (se.getState() == ShopStateEnum.CHECK.getState()) {
                    modelMap.put("success"true);
                else {
                    modelMap.put("success"false);
                    modelMap.put("errMsg", se.getStateInfo());
                }
            catch (ShopOpreationException e) {
                modelMap.put("success"false);
                modelMap.put("errMsg", e.getMessage());
            catch (IOException e) {
                modelMap.put("success"false);
                modelMap.put("errMsg", e.getMessage());
            }
 
            return modelMap;
        else {
            modelMap.put("success"false);
            modelMap.put("errMsg""请输入店铺信息");
            return modelMap;
        }
    }
//  private static void inputStreamToFile(InputStream ins,File file) {
//      FileOutputStream os=null;
//      try {
//          os=new FileOutputStream(file);
//          int bytesRead=0;
//          byte[] buffer=new byte[1024];
//          while ((bytesRead=ins.read(buffer))!=-1) {
//              os.write(buffer,0,bytesRead);
//          }
//      } catch (Exception e) {
//          throw new RuntimeException("调用inputStreamToFile产生异常:"+e.getMessage());
//      }finally {
//          try {
//              if(os!=null) {
//                  os.close();
//              }
//              if(ins!=null) {
//                  ins.close();
//              }
//          } catch (IOException e) {
//              throw new RuntimeException("inputStreamToFile关闭IO产生异常:"+e.getMessage());
//          }
//      }
//  }
 
}


0 回复 有任何疑惑可以回复我~
  • 提问者 慕勒3276650 #1
    老师好,代码书写没有问题,就是不会前后端联合测试。前端测试完后,进入后端代码,后端的结果返回不了前端,前端继续往后走,就会出现回调函数中data为null的情况。
    回复 有任何疑惑可以回复我~ 2019-04-15 15:29:08
  • 翔仔 回复 提问者 慕勒3276650 #2
    同学好,我看你这里是编辑页面了,注册页面应该成功吧?注册成功的话,可以利用注册来试试自己的调试能力,比如你可以让它走到后端的断点后,再在前端Chrome开发者模式下,在
    if(data.success){
    设置一个断点,然后F8跳过所有后端的断点,看能否来到前端,
    或者你可以在if(data.success){ 上面打一句,看看有没有回来,记得清空缓存
    回复 有任何疑惑可以回复我~ 2019-04-16 00:02:36
问题已解决,确定采纳
还有疑问,暂不采纳
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号