gpt4 book ai didi

javascript - 是否有应用程序/服务允许您为 AJAX 请求创建远程数据库?

转载 作者:行者123 更新时间:2023-12-03 12:15:40 25 4
gpt4 key购买 nike

此服务旨在帮助设置后端尚未准备好或不可用的前端 Web 应用程序 - 该服务为您提供临时端点以向其发送 AJAX 请求,并返回您指定的数据。

我知道我以前见过类似的东西,但我想不起名字了。再多的谷歌搜索也无济于事。您知道我指的是应用程序/服务吗?感谢您的帮助!

最佳答案

您根本不必拥有数据库。如果您只是想测试您的 AJAX 以查看它是否可以发送到服务器页面,然后查看它是否在成功后返回到您的 JavaScript,我会编写一点 PHP,例如:

test_ajax.php

<?php
if(isset($_POST)){
echo json_encode($_POST);
}
else{
// $_POST super global is not set
}
?>

唯一的问题是这段代码没有测试任何特定的东西。它只是通过 JavaScript 吐出您通过 AJAX 发送的数据,您可以在 requestInstance.readyState === 4 && requestInstance.status === 200 时看到这些数据。如果使用 get 方法,请将 $_POST 更改为 $_GET

假设您正在使用 jQuery 的 .post() 方法:

$.post('test_ajax.php', {property:'value', check_this:'stuff out'}, function(r){
// use firebug's console or output to html instead
console.log(r);
// should return the object {"property":"value", "check_this":"stuff out"}
}, 'json');

与:

相同
$.ajax({
type:'POST',
url:'test_ajax.php',
dataType:'json',
data:{property:'value', check_this:'stuff out'},
success:function(resp){
console.log(resp);
}
});

关于javascript - 是否有应用程序/服务允许您为 AJAX 请求创建远程数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24719142/

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