伪静态下Post无法响应的问题

页面进行伪静态,Post的地址就不要写相对路径了,这样容易出错。

 

原来路径为,/SC/ProductDetail.aspx?id=110 用相对路径,

那么post的地址为:/SC/ProductDetail.aspx?Action=GetSpecificationsData&proId=110

 

伪静态之后的地址为:/product/detail-110.html 用相对路径,

那么post的地址为:/product/ProductDetail.aspx?Action=GetSpecificationsData&proId=110

 

伪静态下Post无法响应的问题一图解千问

上一篇:Linux下C编写基本的多线程socket服务器


下一篇:[LeetCode] Unique Paths II 不同的路径之二