我正在为个人网站使用jQuery文件上传插件。 我试图在数据库表中添加一个名为“status”的列。
我修改了函数“protected function handle_file_upload(xxx,xxx ...)”。 如下
if (empty($file->error)) {
$sql = 'INSERT INTO `'.$this->options['db_table']
.'` (`name`, `size`, `type`, `title`, `description`,`status`)'
.' VALUES (?, ?, ?, ?, ?, ?, ?)';
$query = $this->db->prepare($sql);
$query->bind_param(
'sisss',
$file->name,
$file->size,
$file->type,
$file->title,
$file->description,
'0'
);
但它显示错误“SyntaxError:JSON.parse:unexpected character”。代码有什么问题? 请指教。