gpt4 book ai didi

php - 如何使用 Ajax 调用检索数据

转载 作者:行者123 更新时间:2023-12-01 03:44:26 26 4
gpt4 key购买 nike

我喜欢通过 Ajax 调用检索字符串,但我不断在响应中获取整个 html 页面。

如何获取字符串?

$.ajax({
url: '{$domainpath}{$language}/reservations/updatestartdates',
data: {property:property,stayduration:stayduration},
type: 'POST',
dataType: 'json'
}).done(function(response){
alert(response);
});

private function updateAvailableStartDates(){
if(isset($_POST['property']) && !empty($_POST['property']) && isset($_POST['stayduration']) && !empty($_POST['stayduration'])){
$property = $_POST['property'];
$stayduration = $_POST['stayduration'];
}
//handle code

echo json_encode('only this string');
}

最佳答案

它将检索 url: '{$domainpath}{$language}/reservations/updatestartdates',

的所有输出

因此,如果您想要字符串,则只需在服务器页面中 echo 字符串(删除所有 html 输出)

同时将 echo json_encode('only this string'); 更改为 echo json_encode(array('only this string'));

关于php - 如何使用 Ajax 调用检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15084610/

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