Tornado可以根据Content-Type标题进行不同的路由吗?

时间:2015-08-17 20:34:31

标签: python tornado

对于完全相同的REST路由,例如if (ReportViewer1.LocalReport.ReportPath.BeginsWith("/")) { string realpath = Server.MapPath(ReportViewer1.LocalReport.ReportPath); ReportViewer1.LocalReport.ReportPath = realpath; } ReportViewer1.LocalReport.Refresh(); ,是否可以根据/message标头的值配置路由以执行不同的处理程序?

1 个答案:

答案 0 :(得分:1)

没有。 Tornado的路由只考虑主机名和路径。您必须将此路径路由到单个RequestHandler,然后检查该处理程序中的Content-Type