Zend_Json_Server:使用自定义消息和代码返回错误?
我有一个使用 Zend_Json_Server 的 API 并定义了一个处理请求的类。 但是,如何返回错误,以便我可以设置消息和错误代码? 当我抛出新的异常时,我只能设置消息。不使用异常代码。
I have an API that uses Zend_Json_Server and defines a class that handles the requests.
However, how can I return an error, so that I can set the message AND the error code?
When I throw a new exception, I can only set the message. The exception code is not used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不调用
Why don't you call the fault method on Zend_Json_Server?
我找到了解决方案:
错误代码必须在-32099和-32000之间。
因此,您可以抛出异常并传递这些有效错误代码之一。
I found the solution:
The error code has to be somewhere between -32099 and -32000.
So you can throw an Exception and pass one of those valid error codes.