Vue遇到的亿个问题:Post/Get区别、400/500/404错误

Vue的Post和Get请求传参方式

Get和Post方法的区别,选用哪个

  • GET请求的数据会附在URL之后(就是把数据放置在HTTP协议头中),以?分割URL和传输数据,参数之间以&相连。如果数据是英文字母或数字,则原样发送;如果是空格,转换为+;如果是中文或其他字符,则直接把字符串用BASE64加密,得出如:%E4%BD%A0%E5%A5%BD,其中%XX中的XX为该符号以16进制表示的ASCII码值。
    POST把提交的数据放置在HTTP包的包体中。

  • POST的安全性要比GET的安全性高。比如:通过GET提交数据,用户名和密码将明文出现在URL上,因为:(1)登录页面有可能被浏览器缓存,(2)其他人查看浏览器的历史纪录,那么别人就可以拿到你的账号和密码。

Post方法

请求带参数时直接大括号加在url后面,用键值对的形式,发送给后端的是json对象。后端拿到json对象,并进行解析。
vue前端

this.$http.post('http://localhost:8080/fragment/calculate', window.JSON.stringify({
        fragmentInfo: this.form
      }), { headers: { 'Content-Type': 'application/json' }}).then((response) => {
        if (response.data.code === 200) {
          this.$message({
            type: 'success',
            message: '成功'
          })
        } else {
          this.$message({
            type: 'error',
            message: '失败'
          })
        }
      })

后端

@ApiOperation(value = "")
    @PostMapping("calculate")
    @ResponseBody
    public CommonResult<Fragment> calculate(@RequestBody JSONObject jsonObject) throws IOException {
        Fragment s =  fragmentService.calculateFrag(jsonObject);
        return CommonResult.success(s);
    }

后端使用@RequestBody JSONObject jsonObject直接获取传来的json对象,注意传来的json对象只有一组键值对,其键的值为我们需要获取的json对象!

Get方法

请求带参数时在url后面写{ params:{ } }里面的参数键值对形式,请求的时候会自动加在url后面,如:http://localhost:8080/missileTarget/list?username=2&pageSize=10&pageNum=1即为传递三个参数。
vue前端

this.$http.get('http://localhost:8080/missileTarget/list', { params: {
        username: this.listQuery['keyword1'], pageSize: this.listQuery['pageSize'], pageNum: this.listQuery['pageNum']
      }}).then((response) => {
        if (response.data.code === 200) {
          this.$message({
            type: 'success',
            message: '成功'
          })
        } else {
          this.$message({
            type: 'error',
            message: '失败'
          })
        }
      })

注意几个键值对就代表几个参数,不能直接传json对象,会报400错误。
后端

@ApiOperation("")
@GetMapping("list")
@ResponseBody
public CommonResult<CommonPage<Fragment>> list(@RequestParam(value = "username", required = false) Integer keyword1,
                                               @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
                                               @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
    PageHelper.startPage(pageNum, pageSize);
    FragmentExample example = new FragmentExample();
    example.createCriteria().andGroupNumEqualTo(keyword1);
    List<Fragment> fragmentList = fragmentMapper.selectByExample(example);
    return CommonResult.success(CommonPage.restPage(fragmentList));
}

使用@RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize可以直接获取传来的参数pageSize并将其值赋给变量pageSize,有几个参数就写几个。

Vue请求后端的一些错误

400错误码

表示请求中的语法错误。我的错误是

  • /missiletarget面下请求/fragment/list,无法实现,改为/missiletarget/list并修改后端相应的处理函数后解决。
  • 使用get方法,传递的参数为json对象,报错。将json对象中四个键值对直接写在参数列表传参,解决。因为get方法无法直接传json对象。

500错误码

为服务端的问题,查看服务端发现报错java.lang.NullPointerException,进一步查看错误代码行,发现使用了object对象使用toString()方法,但是此次请求object对象为空。我的原因是前端有个输入框没输入,传给后端的这个参数为null导致的,输入即可。

根据提供的引用内容,可以看出用户发送了一个POST请求到URL为http://localhost:9528/dev-api/vue-admin-template/user/login,并且发送的json数据为{ "username": "admin", "password": "111111" }。返回的数据为{ "code": 20000, "data": { "token": "admin-token" } }。\[1\] 然后用户发送了一个GET请求到URL为http://localhost:9528/dev-api/vue-admin-template/user/info?token=admin-token,并且发送的数据为admin-token。返回的数据为{ "code": 20000, "data": { "roles": \["admin"\], "introduction": "I am a super administrator", "avatar": "https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif", "name": "Super Admin" } }。\[2\] 根据提供的代码,可以看出用户在src/api/user.js文件中修改了对应的访问地址,其中login函数发送了一个POST请求到URL为/admin/vod/user/login,getInfo函数发送了一个GET请求到URL为/admin/vod/user/info,logout函数发送了一个POST请求到URL为/admin/vod/user/logout。\[3\] 根据提供的信息,问题中的URL为http://localhost:9527/dev-api/vue-element-admin/user/login,返回了404 (Not Found)错误。根据提供的引用内容,我们无法得知为什么会返回404错误,可能是URL地址不正确或者该接口不存在。建议检查URL地址是否正确,并确保该接口存在。 #### 引用[.reference_title] - *1* *2* *3* [直播课堂系统06-搭建项目前端环境](https://blog.csdn.net/z754916067/article/details/125976873)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值