'XML5619: Incorrect document syntax. ' error in IE10 Only

后端 未结 2 798
南笙
南笙 2021-02-19 15:08

I\'ve been noticing during some IE10 testing that I keep running into the following error:

XML5619: Incorrect document syntax. 

However, I\'m n

相关标签:
2条回答
  • 2021-02-19 15:37

    set the content-type of you're request to text/xml and the error will disappear.

    I think IE10 expects the content-type to be set. Check Developer tools -> Network -> Start capturing what type your request is.

    For Ext.Ajax.request set the content-type to application/json.

    0 讨论(0)
  • 2021-02-19 15:38

    XML5619: Incorrect document syntax.

    Above issue throws in IE because the Content-Type wont be there in the response header. To cross check the same, Open Developer Tools >Network check Content-Type for the request that will be black. IE expect Content-Type for every response data. To solve this issue set the content type for the response

    0 讨论(0)
提交回复
热议问题