我有一个java脚本ajax方法,它将参数发送到控制器
function class_selection(day) {
var section_id = document.getElementById('section_id2').value;
var class_id = document.getElementById('class_id').value;
// alert("day"+day);
alert("class_id"+class_id);
alert("section_id"+section_id);
$.ajax({
url: '<?php echo base_url(); ?>index.php?admin/get_class_section/' + day + section_id + class_id,
// alert("url"+url);
success: function(response)
{
jQuery('#section_selection_holder').html(response);
}
});
}
但是当我在控制器中尝试使用print_r时(第12天) 两个ID的日子,所以将数据传递给控制器的方式是正确的吗?
答案 0 :(得分:1)
试试这个:
$.ajax({
url: '<?php echo base_url(); ?>index.php?admin/get_class_section/',
data: {day: day, section_id: section_id, class_id: class_id},
method: POST,
success: function(response)
{
jQuery('#section_selection_holder').html(response);
}
});
在您的php控制器中,您可以使用$ _POST获取这些值。 (print_r($ _ POST))数组。
答案 1 :(得分:0)
使用下面的代码调用参数
的ajax function class_selection(day) {
var section_id = document.getElementById('section_id2').value;
var class_id = document.getElementById('class_id').value;
$.ajax({
type: "POST",
dataType: 'json',
data: 'day=' + day + '§ionId=' section_id + '&classId=' + class_id,
url: 'index.php?admin/get_class_section',
success: function(json) {
//your response here
}
});
}
答案 2 :(得分:0)
你还应该尝试发送如下ajax call
之类的数据var frm_data = {day: day,section_id:section_id,class_id:class_id}
$.ajax({
url: '<?php echo base_url(); ?>index.php?admin/get_class_section/',
type: 'POST',
data: frm_data,
dataType:'JSON',
success: function(response)
{
jQuery('#section_selection_holder').html(response);
}
});