gpt4 book ai didi

javascript - 如何通过 AJAX 将 html 从 javascript 传递到 php。

转载 作者:行者123 更新时间:2023-11-28 01:26:58 25 4
gpt4 key购买 nike

在我的网页上,我有一个文本区域,管理员可以在其中输入 html,然后将其保存以显示在非管理员的页面上。我尝试将保存的 html 文本传输到 php,就像我通过 ajax 发送的任何其他变量一样,但无论出于何种原因,不允许将 html 作为 GET 参数发送。我的 ajax reguest 在下面

function saveNotesToDBAjax(textBoxValue, buildName){
var urlString = "saveNotesToDBAjax.php?Build=" + buildName + "&Text=" + textBoxValue;
function testAjax() {
return $.ajax({
url: urlString
});
}
var promise = testAjax();
promise.success(function (data) {
//alert(data);
console.log(data);
});}

上面的变量“textBoxValue”是保存 html 的变量。无论如何要解决这个问题?另外,我的控制台显示的错误是“GET(然后列出我的 url)403 错误”

提前致谢!

最佳答案

尝试:

function saveNotesToDBAjax(textBoxValue, buildName){
$.ajax({
type: "POST",
url: "saveNotesToDBAjax.php",
data: { 'Build': buildName, 'Text': textBoxValue },
success: function(data){ console.log(data); }
});
}

记得从 $_GET[] 切换到 $_POST[]

关于javascript - 如何通过 AJAX 将 html 从 javascript 传递到 php。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31658632/

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