How can I view network requests (for debugging) in React Native?

前端 未结 12 1174
借酒劲吻你
借酒劲吻你 2020-11-28 03:16

I\'d like to view my network requests in React Native to help me debug - ideally in the \'Network\' tab of Chrome\'s devtools.

There are some closed issues about thi

12条回答
  •  再見小時候
    2020-11-28 03:46

    Please be careful with this code.

    XMLHttpRequest = GLOBAL.originalXMLHttpRequest ?
       GLOBAL.originalXMLHttpRequest : GLOBAL.XMLHttpRequest;
    

    It helps and it's great but it destroys upload. I spend 2 days trying to figure out why uploaded files are sending [object Object] instead of the real file. The reason is a code above.

    Use it for regular calls not but for multipart/form-data calls

提交回复
热议问题