gpt4 book ai didi

php - 为什么 jquery 无法使用 codeigniter 正确发布?

转载 作者:行者123 更新时间:2023-12-02 20:05:53 25 4
gpt4 key购买 nike

我正在尝试将一个变量发布到我的 php 处理程序页面,该变量告诉 php 是否将某个表单字段的数据添加到数据库中,但由于某种原因,我的 post 函数不会发布任何内容。我使用 codeigniter 框架来处理 php 方面的问题,使用 jquery 来处理 JavaScript 方面的问题。我认为这可能与我作为要发布的页面传递的 URL 有关,以感知它不是 .php 页面或类似的页面,但我不确定。任何帮助将不胜感激。

          $('form').submit(function() {
if(new_gal) {
if(name_valid && description_valid && gal_name_valid && gal_description_valid) {
// return the new gal info to php
$.post('http://localhost/index.php/site/photoUploader', {NewGallerry: 'TRUE'});

return true;
} else {
return false;
}
} else if (name_valid && description_valid)
{
// return the id of the gal to php and tell php not to add the info in the new gal section.
$.post('http://localhost/index.php/site/photoUploader', {NewGallerry: 'FALSE'});
return true;
} else {
return false;
}

非常感谢任何花时间尝试回答这个问题的人。

最佳答案

尝试:

{'NewGallerry': FALSE}

而不是:

{NewGallerry: 'FALSE'}

无论如何,firebug 控制台总是可以帮助你使用 ajax ;)

关于php - 为什么 jquery 无法使用 codeigniter 正确发布?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7423628/

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