Android调用fetch请求报错"Invalid response type"

调用fetch请求报错 “Invalid response type”.

版本 cocos creator v3.1.2
环境 Android

查看引擎源码platforms\native\builtin\jsb-adapter\fetch.js发现fetch方法中有将xhr.responseType赋值为’blob’;
但是查看jsb源码jsb_xmlhttprequest.cpp文件, 在XMLHttpRequest_getResponse方法中并不支持’blob’;

web平台正常, ios平台没看

这个fetch不靠谱,不如自己去搞个fetch 的polyfill了

使用了whatwg-fetch,还是会有这个问题

后来怎么解决的?