正如标题所说,有没有办法将函数公开给JSON-RPC和XML-RPC接口?优选地,在单个端口上运行的一个服务器将回答这两种类型的请求。
谢谢!
答案 0 :(得分:-1)
返回不同格式的常用方法之一是以某种方式指定您在网址中输入的类型。最常见的是:
http://example.com/some/page.<format>
或
http://example.com/some/page?output=<format>
然后您的返回对象应转换为所需格式:
// somewhere at the end of the method handling the request
return Formater(format_param).format(response_object)