You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The page displays {"a":"test"}, i.e. only the ObjectResult value is returned to the client.
Actual results
The page displays {"value":{"a":"test"},"formatters":[],"contentTypes":[],"declaredType":null,"statusCode":null} instead, i.e. all the properties of ObjectResult are returned to the client, not just the value.
Steps to reproduce
Open http://localhost:5000/ in your browser.
Expected results
The page displays
{"a":"test"}, i.e. only the ObjectResult value is returned to the client.Actual results
The page displays
{"value":{"a":"test"},"formatters":[],"contentTypes":[],"declaredType":null,"statusCode":null}instead, i.e. all the properties ofObjectResultare returned to the client, not just the value.