-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
READ ERROR on fetch with data #56
Comments
I found the problem to be the in the apiCall function on ios8 emulator. The following solution worked: if (_options.type != 'GET' && ! _.empty(_options.data)) {
xhr.send(_options.data);
} else {
xhr.send();
} |
I someone can verify this I will create a pull request. |
that looks correct.. please PR that. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Whenever I do a fetch with data I get an error of
here's how I'm fetching
I've also tried JSON.stringify on the data but that causes the same error.
The text was updated successfully, but these errors were encountered: