在 jQuery 环境中创建 XML 文档

发布于 2024-07-17 15:57:22 字数 286 浏览 10 评论 0原文

参考了 JQuery 文档,其中提到了这段代码。

var xmlDocument = [create xml document];
 $.ajax({
 url: "page.php",
 processData: false,
 data: xmlDocument,
 success: handleResponse
 });

但我试图在 Adob​​e AIR 环境中发出相同的请求,但它给出了解析错误。

有没有使用 jQuery 创建 xml 文档的特定方法。

Have referred to JQuery docs where they mention this piece of code.

var xmlDocument = [create xml document];
 $.ajax({
 url: "page.php",
 processData: false,
 data: xmlDocument,
 success: handleResponse
 });

but i am trying to make the same request in Adobe AIR environment its giving a parse error.

Is there any specific way of creating an xml Document using jQuery.

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

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

发布评论

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

评论(2

总以为 2024-07-24 15:57:22

谢谢大家,

我在这个位置有一个插件

Thank you all

I have got a plugin at this location

海未深 2024-07-24 15:57:22

为了使服务器能够获取数据,您需要说明

data: "varname=" + xmlDocument,

数据在传输的另一端没有变量名称。

in order for the server to get the data, you need to say

data: "varname=" + xmlDocument,

otherwise the data has no variable name on the other side of the transmission.

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