Observable Map function not running (Angular2, http)
问题 Update The issue seems to be that the map function is not run on a "failed" request. This means that if the API I'm talking to returns a 422 Validation Failed error (or other 4xx errors) Angular will treat this as a failure and cause the Observer to run the subscribed error callback, skipping the map function in the process. Is it possible to force Angular to treat certain 4xx errors as successful requests, or force the map function to run even when an Observable returns an error? I have the