gpt4 book ai didi

php - jQuery ajax 请求 php,如何仅返回纯文本

转载 作者:行者123 更新时间:2023-12-01 06:40:45 24 4
gpt4 key购买 nike

我正在向 php 页面发出 ajax 请求,但我无法让它只返回纯文本。

    $.ajax({
type: 'GET',
url: '/shipping/test.php',
cache: false,
dataType: 'text',
data: myData,
success: function(data){
console.log(data)
}
});

在 test.php 中我包括 this script获取 UPS 费率。然后我用 $rate = ups($dest_zip,$service,$weight,$length,$width,$height); 调用该函数

我在做echo $rate;在 test.php 的底部。当在浏览器中查看显示速率时,这很棒。但是当我通过 ajax 请求页面时,我得到了一堆 XML。馅饼在这里:http://pastie.org/1416142

我的问题是,如何获取它,以便我可以从 ajax 调用返回纯文本字符串,其中结果 data会是一个数字吗?

编辑,这是我在 Firebug-Response 选项卡中看到的内容:

alt text

HTML 标签:

alt text

最佳答案

您正在使用的 PHP 脚本输出 XML。查看 upsRate.php,您将在字符串中看到一大堆 XML。

此外,您可能需要注释掉 upsRate.php 的第 96 行,因为它会输出一些注释,当您使用 ajax 获取页面时您会看到这些注释。

关于php - jQuery ajax 请求 php,如何仅返回纯文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4559058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com