Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据维基百科和我的理解,一个查询像
http://www.domain.com/path/?query=value#!/q/testtest
比_ _
http://www.domain.com/path/#!/q/testtest?query=value
如果在 HTML 链接中使用第二种样式,我可能会遇到任何问题吗?
您的第二个 URI 不包含查询组件。
http://www.example.com/path/?query=value#!/q/testtest
/path/
?query=value
#!/q/testtest
http://www.example.com/path/#!/q/testtest?query=value
#!/q/testtest?query=value
这是一个有效的 URI。