We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Here is the REST API I am using http://rest.learncode.academy/api/learncode/something everything(ADD, SELECT, DELETE) works fine except the UPDATE doesnt send the proper response:
function updateUser() { var params = { name: 'U222User', email: 'newuser@esmail.com' }; // UPDATE /userss/:id user.save(params, { success: function() { alert('suuccc'); }, error: function() { alert('THIS DOESNT WORK'); } }); }
It updates the API, but alerts the ERROR , why?
The text was updated successfully, but these errors were encountered:
Possibly related to #83? Try the latest version.
Sorry, something went wrong.
No branches or pull requests
Here is the REST API I am using http://rest.learncode.academy/api/learncode/something
everything(ADD, SELECT, DELETE) works fine except the UPDATE doesnt send the proper response:
It updates the API, but alerts the ERROR , why?
The text was updated successfully, but these errors were encountered: