The background is like this:
- The client web browser send a request to the server;
- The server program will launch some biz check rules before doing the real work.
If check fail, some tips should be feed back to the client browser.
So, here is the question. Should I use an error response http code to indicate this, or use 200 directly, and then parse the message from response body.
Sometimes, this is not a problem. But, some client component give some util methods if error code returned. So, that's a hard decision to make:
- return 200,and error message. parse and show them myself;
- return some code like 500, let the client component to show it directly.