gpt4 book ai didi

php - 如何使用 HTTP POST urlencoded 表单数据?

转载 作者:行者123 更新时间:2023-11-29 10:30:52 26 4
gpt4 key购买 nike

我想将数据从 Ionic Form 传递到 Php 文件到 MySql 数据库。我对此完全陌生......这是我将数据从 Ionic Form 传递到 Php 文件的代码

Please check this link for code

我尝试使用警报调试我的代码

alert(url); //Output: http://localhost/ionic-php-sql/manage-data.php
alert(body); //Output: key=create&name=Test&description=Test
alert(options); //[object Object]

每当我警告(选项)时,它就会显示[object Object]。 (我猜这是不正确的或者有一些错误)。我尝试将alert()放在里面

 this.http.post(url, body, { headers: headers }).subscribe((data) =>{}

然后它不会显示警报弹出窗口。请检查代码并告诉我是否有任何错误/更改。提前谢谢您。

最佳答案

像这样使用它:

alert(JSON.stringify(options));

Alert在警报框中不显示object,仅支持string类型。

我建议您使用console.log(options),您可以在浏览器控制台中以任何类型查看它们。

console.log() 打印所有类型的数据。

关于php - 如何使用 HTTP POST urlencoded 表单数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47430395/

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