没有办法设置 responseType: "blob" 吗? #223
-
responseType: "blob" |
Beta Was this translation helpful? Give feedback.
Answered by
JOU-amjs
Oct 27, 2023
Replies: 1 comment
-
这个是需要按你使用的请求适配器而定的,如果使用的是XMLHttpRequest适配器和axios适配器,是可以这样设置的,因为XMLHttpRequest和axios都支持这个参数。 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fengshancui
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
这个是需要按你使用的请求适配器而定的,如果使用的是XMLHttpRequest适配器和axios适配器,是可以这样设置的,因为XMLHttpRequest和axios都支持这个参数。
但如果使用的是GlobalFetch,它内部是用fetch API实现的,那你就得通过response.blob()来获取