-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(resource): check whether response matches action.isArray #3054
Conversation
When using $resource you must setup your actions carefully based on what the server returns. If the server responds to a request with an array then you must configure the action with `isArray:true` and vice versa. The built-in `get` action defaults to `isArray:false` and the `query` action defaults to `isArray:true`, which is must be changed if the server does not do this. Before the error message was an exception inside angular.copy, which didn't explain what the real problem was. Rather than changing the way that angular.copy works, this change ensures that a better error message is provided to the programmer if they do not set up their resource actions correctly. Closes angular#2255, angular#1044
LGTM. Would like to run this by @IgorMinar before merging. |
@@ -472,6 +472,10 @@ angular.module('ngResource', ['ng']). | |||
promise = value.$promise; | |||
|
|||
if (data) { | |||
if ( angular.isArray(data) != !!action.isArray ) { | |||
return $q.reject("Error in resource configuration. Expected response to contain an " + | |||
(action.isArray?'array':'object') + " but got an " + (angular.isArray(data)?'array':'object')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we throw a minErr instead of explicitly rejecting the promise?
Nice fix, but please consider throwing minErr instead |
Will throwing the minErr be converted to a $q rejection? On 14 July 2013 05:52, Igor Minar notifications@github.com wrote:
|
bump! |
@petebacondarwin I spoke with @ksheedlo and asked him to merge this one as well as #3159 in after some modifications |
Great! |
I merged #3159 yesterday, but this one is giving me some trouble. I checked it out and changed the
An error thrown inside the promise should be converted to a I don't have time to go in and debug this right now. There's a chance I could get to it later this afternoon or sometime next week, but if someone else wants to take a look, that would be appreciated. |
If anyone else is going to try and reproduce the behavior I'm getting, I've published a branch: https://github.com/ksheedlo/angular.js/tree/pr3054 |
Is it that you are not yet in a promise handler? Pete
|
Hey @ksheedlo - I think you have uncovered a pretty major bug in This is not picked up in the |
Actually the problem is simply that, by default, ngMock.$exceptionHandlerProvider is set to rethrow unless told otherwise (i.e. to "log"). Many specs do this: notably |
Closing in favour of #3400 |
When using $resource you must setup your actions carefully based on what the server returns. If the server responds to a request with an array then you must configure the action with
isArray:true
and vice versa. The built-inget
action defaults toisArray:false
and thequery
action defaults toisArray:true
, which is must be changed if the server does not do this.Before this change, the error message was an exception inside
angular.copy
, which didn't explain what the real problem was.Rather than changing the way that
angular.copy
works, this change ensures that a better error message is provided to the programmer if they do not set up their resource actions correctly.Closes #2255, #1044