Wenn ich etwas kräusele, funktioniert es gut: curl -L -i -H 'x-device-id: abc' -F "url=http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" http://example.com/upload Wie kann ich das mit Axios richtig machen? Ich benutze reagieren, wenn das wichtig ist: uploadURL (url) { return axios.post({ url: 'http://example.com/upload', data: { url: url }, headers: { 'x-device-id': 'stuff', 'Content-Type': 'multipart/form-data' } …
Ich verwende Axios für eine Reaktionsanwendung und möchte alle Axios-Anrufe protokollieren, die ich an einer beliebigen Stelle in der App tätige. Ich verwende bereits eine einzelne globale Instanz von Axios über die Funktion create und kann ein generisches console.log protokollieren. Ich möchte jedoch mehr Informationen wie aufgerufene Funktion, Parameter usw.
Ich habe eine React-Komponente, die das Verfügbarkeitsflag der Internetverbindung enthält. UI-Elemente müssen dynamisch entsprechend dem Status in Echtzeit geändert werden. Außerdem verhalten sich Funktionen beim Flaggenwechsel anders. Meine aktuelle Implementierung fragt die Remote-API mit Axios in jeder Sekunde anhand des Intervalls ab und aktualisiert den Status entsprechend. Ich suche nach …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.