1

正如标题所说,有没有办法将函数同时暴露给 JSON-RPC 和 XML-RPC 接口?优选地,在单个端口上运行的一台服务器将响应这两种类型的请求。

谢谢!

4

1 回答 1

-1

返回不同格式的常用方法之一是以某种方式在 url 中指定您想要的类型。最常见的是:

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)
于 2013-03-08T09:19:54.777 回答