使用 HttpWebResponse 接收转义的双引号
我使用 HttpWebRequest 调用页面,然后使用 HttpWebResponse 检索 HTML。一切工作正常,除了我不明白为什么我检索到的 HTML 代码是“奇怪的”。
示例:
http:\/\/www.example.com\/link\/
实际上是
http://www.example.com/link
另一个示例:
\u00252Crandom_data
实际上是
%2Crandom_data
感谢您的编辑,抱歉我是新的。
HTML 文件的开头:
<script type="text/javascript">/*
奇怪的数据就在里面
window.location.replace
I call a page using HttpWebRequest and then I retrieve the HTML using HttpWebResponse. Everything works fine, except I don't understand why the HTML code i retrieve is 'weird'.
Example:
http:\/\/www.example.com\/link\/
is actually
http://www.example.com/link
another example:
\u00252Crandom_data
is actually
%2Crandom_data
thanks for the edit, sorry I'm new.
Beginning of HTML file:
<script type="text/javascript">/*
the data that's weird is inside this
window.location.replace
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您会看到一个带有转义码的 Javascript 字符串。
这就是实际的页面源。
You're seeing a Javascript string with escape codes.
That's the actual page source.