对于完全相同的REST路由,例如if (ReportViewer1.LocalReport.ReportPath.BeginsWith("/")) {
string realpath = Server.MapPath(ReportViewer1.LocalReport.ReportPath);
ReportViewer1.LocalReport.ReportPath = realpath;
}
ReportViewer1.LocalReport.Refresh();
,是否可以根据/message
标头的值配置路由以执行不同的处理程序?
答案 0 :(得分:1)
没有。 Tornado的路由只考虑主机名和路径。您必须将此路径路由到单个RequestHandler
,然后检查该处理程序中的Content-Type
。