使用 HttpWebResponse 接收转义的双引号

发布于 2024-10-14 20:18:40 字数 527 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤云独去闲 2024-10-21 20:18:40

您会看到一个带有转义码的 Javascript 字符串。

这就是实际的页面源。

You're seeing a Javascript string with escape codes.

That's the actual page source.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文