http response - Fetch in tauri v2 #13603
Answered
by
FabianLars
mohammadhasananisi
asked this question in
Q&A
-
hi import { fetch as tauriFetch } from '@tauri-apps/plugin-http';
const response = await tauriFetch(fullUrl, fetchOptions);
if (!response.ok) throw response;
const responseData = await response.json();
console.log(responseData); It gets stuck when it reaches this line. ==> const responseData = await response.json(); |
Beta Was this translation helpful? Give feedback.
Answered by
FabianLars
Jun 10, 2025
Replies: 1 comment 6 replies
-
share the output of |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hmm, that's weird, those versions shouldn't have this issue. Are you able to update tauri to 2.5.1 just to double check or are you stuck with 2.1.1 (if so, why?)