XML 解析错误:格式不正确(令牌无效)

发布于 2024-12-12 11:43:27 字数 289 浏览 0 评论 0原文

在线验证器在我的 XML 页面中的 url 上抛出错误。这是受影响的字符串:

http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

错误指向第二个等号 exp = 907031 的位置。

我之前搜索过,根据一些帖子不允许使用等号,但是第一个等号如何通过,链接获胜如果我对它进行 urlquote 则不起作用。

我可以在这里做什么来绕过这个错误?

Online validator throws error on url in my XML page. Here is affected string:

http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

error is pointed at place of second equal sign exp = 907031.

I searched before, and according some posts equal sign is not allowed, but then how first equal sign passed, and link won't work if I urlquote it.

What can I do here to bypass this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一页 2024-12-19 11:43:27

&号是问题所在。 XML 中的 & 符号充当编码字符的开头,因此您需要对 & 符号本身进行编码。例如&
将您的完整网址更改为:
http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

The ampersand is the problem. Ampersands in XML act as the start of an encoded character, so you need to encode the ampersand itself. E.g. &.
Change your complete URL to this:
http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

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