gpt4 book ai didi

php - codeigniter 和 ajax 联系表

转载 作者:行者123 更新时间:2023-12-01 08:24:42 25 4
gpt4 key购买 nike

我正在尝试在 codeigniter 应用程序的联系表单中使用 ajax。我已将其发送到进行 ajax 调用的位置,但没有将发布数据发送到服务器。我不明白为什么。请帮忙。

我确实有一些返回,但它们没有任何作用。另外,$this->input->post('name') 为空。

表单 View

<?php
echo form_open('welcome/submit_contact');

echo form_error('name');
echo form_label('Name', 'name'"');
echo form_input('name', set_value('name'), 'id="name);

echo form_error('email');
echo form_label('Email', 'email');
echo form_input('email', set_value('email'), 'id="email"');

echo form_error('phone');
echo form_label('Phone', 'phone');
echo form_input('phone', set_value('phone'), 'id="phone"');
#echo '<h5>Do not start with "1" and no dashes.</h5>';

echo form_error('message');
echo form_label('Message', 'message');
echo form_textarea('message', set_value('message'), 'id="message"');

$submitData = array(
'name' => 'submit',
'value' => 'Submit',
'id' => 'button'

);
echo form_submit($submitData);

echo form_close();
?>
<script type="text/javascript">

$(function() {

$('form').click(function() {

// get the form values
var form_data = {
name: $('#name').val(),
email: $('#email').val(),
message: $('#message').val()
};

// send the form data to the controller
$.ajax({
url: "<?php echo site_url('welcome/submit_contact'); ?>",
type: "post",
data: form_data,
success: function(msg) {
$('form').prepend('<h5 class="good">Message sent!</h5>');
$('h5.good').delay(3000).fadeOut(500);
alert(msg);
}
});

// prevents from refreshing the page
return false;
});
});
</script>

Controller 功能

function submit_contact()
{
$this->load->library('form_validation');
$this->form_validation->set_error_delimiters('<h4 class="bad">', '</h4>');

$name = $this->input->post('name');
echo "name = ".$name;

$this->form_validation->set_rules('name', 'Name', 'trim|required|alpha_dash|xss_clean');
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email|xss_clean');
$this->form_validation->set_rules('phone', 'Phone' , 'trim|integer|exact_length[10]|xss_clean');
$this->form_validation->set_rules('message', 'Message', 'trim|required|max_length[1000]|xss_clean');

// there are validation errors
if($this->form_validation->run() == FALSE)
{
return "error";
}
else // there are no validation errors
{
/*************************
need to actually send the email
*************************/
return null;
}

}

编辑:我已经更新了问题中的代码。基本上现在如果存在验证错误,我如何让它们显示在表单上?我假设我将从我的 Controller 返回一个值,然后在我的 ajax success 中有一条语句 if msg == "error"显示错误 elseif msg == null,则显示成功消息。但是我如何告诉我的 View 根据 ajax 成功变量显示这些错误?

最佳答案

我认为你应该将 id 放在输入上,将文本区域放在标签上,即

$data = array
(
"name"=>'message',
"value"=>'message',
"id"=>'message'
)


form_textarea($data);

如果您在标签上设置 id,那么 jquery 不会从用户插入的内容中获取任何内容,并且 codeigniter 验证也将无法正常工作。这就是为什么您的帖子结果为 NULL

其他输入字段相同

编辑

您通过 ajax 请求数据,因此返回一个漂亮的 json 对象(首先删除所有调试打印):

// there are validation errors
if($this->form_validation->run() == FALSE)
{
echo(json_encode("validate"=>FALSE));
}
else // there are no validation errors
{
/*************************
need to actually send the email, then send you mail
*************************/
echo(json_encode("validate"=>TRUE));
}

然后在你的ajax成功函数上测试它以显示积极或消极的消息

 <script type="text/javascript">

$(function() {

$('form').click(function() {

// get the form values
var form_data = {
name: $('#name').val(),
email: $('#email').val(),
message: $('#message').val()
};

// send the form data to the controller
$.ajax({
url: "<?php echo site_url('welcome/submit_contact'); ?>",
type: "post",
data: form_data,
dataType: "json"
success: function(msg)
{
if(msg.validate)
{
$('form').prepend('<h5 class="good">Message sent!</h5>');
$('h5.good').delay(3000).fadeOut(500);
}
else
//display error
}
});

// prevents from refreshing the page
return false;
});
});
</script>

关于php - codeigniter 和 ajax 联系表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4833709/

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