1

個人の Web サイトに jQuery File Upload Plugin を使用しています。データベース テーブルに「ステータス」という名前の列を 1 つ追加しようとしました。

関数「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:予期しない文字」というエラーが表示されます。コードの何が問題になっていますか? ご意見をお聞かせください。

4

0 に答える 0