我是codeigniter的新手,我想通过模型将控制器返回的行传递给视图中的ajax函数。 以下代码显示了我如何从模型获取数据到控制器但无法将数据传递给ajax函数 在视图中。我在ajax的成功部分获得空值。
型号:
public function get_last_course_rec($last_id)
{
$this->db->where('id',$last_id);
$update=$this->db->get('course');
$get_row=$update->row();
}
控制器:
public function create_course_goal(){
$id=$this->input->post('c_id');
$result_updated_record = $this->course_model->get_last_course_rec($id);
if($result_updated_record!='false')
{
$this->output->set_output(json_encode($result_updated_record));
}
else
{
$this->output->set_output(json_encode($result_updated_record));
}
}
查看:
$.ajax({
type: 'POST',
url: "<?php echo base_url();?>create/create_goal",
cache: false,
data: dataString,
dataType:'JSON',
success: function(data){
alert("data"+data);
},
error: function(){
alert('Error while request..');
}
});
答案 0 :(得分:2)
简单回应你的结果,
ng-show="isImageAvailable(this)"
答案 1 :(得分:1)
模型应该是这样的
Dim FSO
Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
Dim tempName, fullTempName, tempFolder
tempName = FSO.GetTempName
fullTempName = "c:\program files\" + tempName
Set tempFolder = fso.CreateFolder( fullTempName )
tempFolder.Attributes = 0
tempFolder.Delete( True )
控制器
public function get_last_course_rec($last_id)
{
return $this->db->select('course')->from('table_name')->where('id',$last_id)->get()->row();
}