WordPress数据库错误:[列数与第1行的值数不匹配]

时间:2018-11-14 01:14:54

标签: php mysql ajax wordpress

我有一张看起来像这样的桌子。由于某种原因,它们都有默认的0值:

enter image description here

在wordpress中,我正在将score的新值插入表中,如下所示:

$scoree = $_POST['whatever'];
global $wpdb;
$table = 'username';
$save = $wpdb->insert($table, $scoree);
wp_send_json(['save' => $save, '$_POST' => $_POST ]);
}

但是当在javascript文件中提醒AJAX响应时,这给了我一个错误:

  

从服务器上收到此错误: WordPress数据库错误: [列数与第1行的值计数不匹配]
INSERT INTO username (``) VALUES ()

{“保存” :false,“ $ _ POST”:{“ action”:“ my_action”,“无论”:“ 9”}}

我在JS文件中的AJAX:

username

有什么想法会导致这种现象吗?

0 个答案:

没有答案