我希望使用 MVC 在服务器端标准化 ajax #anchors 的处理。
在调用控制器操作之前,我想将每个带有 ajax 锚的请求转换为没有 ajax 锚的请求,以便控制器代码不知道请求中有锚:
例如:
1)/user/profile#user/photos
应被视为/user/photos
2)/main/index#user/profile/33
应被视为/user/profile/33
MVC 中实现这一目标的最佳技术是什么?
我希望使用 MVC 在服务器端标准化 ajax #anchors 的处理。
在调用控制器操作之前,我想将每个带有 ajax 锚的请求转换为没有 ajax 锚的请求,以便控制器代码不知道请求中有锚:
例如:
1)/user/profile#user/photos
应被视为/user/photos
2)/main/index#user/profile/33
应被视为/user/profile/33
MVC 中实现这一目标的最佳技术是什么?