在 Codeigniter 中,通过使用ajax
我正在向(产品)添加记录并且一切正常,所以我决定添加(图像)字段,并且由于某种原因它不再向数据库添加任何记录
我将 input type=file 添加到我的表单中
<input type="file" name="image">
我把它添加到我的控制器中
$image = $this->input->post('image');
$data = array('title'=>$title,'description'=>$description,'price'=>$price,'quantity'=>$quantity,'image'=>$image);
但是当我删除 $image = $this->input->post('image'); 它又开始工作了
以防万一这是我的ajax代码
var postData = $(this).serialize();
$.ajax({
type:'post',
url: baseURL+"admin/Products/add_product",
data:postData,
dataType:'json',
success:function(data){
}
});
任何想法如何解决它?