Top "Fetch" questions

For questions about the JavaScript Fetch API, use the [fetch-api] tag instead.

React Native fetch() not working android

I am trying to call fetch() function. It works fine on iOS but not working on Android. fetch('https://admin.…

javascript android react-native fetch
Why is a set-cookie header being ignored by browser and the cookies not saved from an Ajax call using fetch?

For some reason my browser (I've tried several) is not setting cookies even though a valid set-cookie response is being …

javascript ajax cookies fetch
Backbone Fetch Request is OPTIONS method

I have a Backbone Collection object with the following URL "http://localhost:8080/api/menu/1/featured". I am trying to perform …

javascript jquery backbone.js fetch options
django-orm case-insensitive order by

I know, I can run a case insensitive search from DJango ORM. Like, User.objects.filter(first_name__contains="jake") …

django case-insensitive fetch django-orm
How can I send a binary data (blob) using fetch and FormData?

The following code works as expected. Open the page "https://wiki.epfl.ch/" on Google Chrome, and execute this code …

javascript fetch
401 (Unauthorized) in Chrome, but not in IE

I recently moved from using jQuery to using isomorphic-fetch with Redux. When running in IE, it manages to fetch fine. …

javascript google-chrome fetch redux unauthorized
Get object by its Uid in WPF

I have an control in WPF which has an unique Uid. How can I retrive the object by its Uid?

wpf object wpf-controls fetch
Hibernate @OneToOne executes multiple queries even with @Fetch(FetchMode.JOIN)

Consider and Employee and Address relationship. There is a One-to-one mapping between Employee and Address. Following are models: @Entity @Table(…

hibernate query-optimization fetch one-to-one
How to get headers of the response from fetch

I am using fetch on chrome Version 52.0.2743.82 (64-bit). I want to get all the headers in the response. Following snippet …

javascript cors fetch fetch-api
UseEffect being called multiple times

I thought useeffect is called once only after render, but its being executed multiple times and not in the order …

javascript reactjs fetch fetch-api use-effect