error typeerror failed to execute 'fetch' on 'window' failed to parse url from

报错涵义

错误typeerror在'window'上执行'fetch'失败,解析url失败

原因是因为接口是get,但是又标注以requestbody(请求体)来接收参数。 说明:在get请求体中不能使用@requestBody来做请求的。
1:GET:不能使用@requestBody
2:POST:可以使用@requestBody(对于参数转化的配置必须统一)和requestParam

  •