layui前端上传
上传jpg就ok,只要上传png服务端就显示『The filetype you are attempting to upload is not allowed.』
服务端用的ci3 upload
`
public function upload()
{
//var_dump($_FILES);
$config['upload_path'] = '/home/wwwroot/abc/uploads/';
$config['allowed_types'] = 'jpg|jpeg|png';
$config['max_size'] = 10240;
$config['max_width'] = 2048;
$config['max_height'] = 1600;
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload('file'))
{
echo $this->upload->display_errors();
}
else
{
header('content-type:application/json');
echo ('{"code":"0","msg":"ok"}');
}
}
`
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…