当我提出请求时,我会得到以下错误
Uncaught (in promise) TypeError: Failed to execute 'fetch' on 'Window': Request withGET/HEADmethodcannot have body.const url = 'http://api.pixelz.com/REST.
好吧,我知道这不是一个好主意,也不应该这样做,但是为了这个问题,请假设没有其他方法-我得到了需要GET请求的API端点,其中的主体是空对象。
有没有办法从浏览器进行异步请求?我使用的是axios库,它在幕后使用了XMLHttpRequest,说当send方法为GET时,它会擦除正文。我尝试使用原生fetch,但在浏览器中显示以下错误:TypeError: Failed to execute 'fetch' on 'Window':
我已经为不需要请求体的GET请求编写了一个傲慢的ui。我没有使用@RequestBody注释,那么为什么Swagger要在ui上打开一个request字段呢?即使我把它保持为空,它也会导致我的API请求失败,并出现以下错误:TypeError: Failed to execute 'fetch' on 'Window': Request with GET/HEADmethod<
但是Swagger获取id作为请求正文参数,并生成以下错误:
TypeError: Failed to execute 'fetch' on 'Window': Request with GET/HEADmethodcannot have body.@ApiParam(value = "Cart ID", required = true) @ExternalRef