我想弄清楚爲什麼我在使用以下方法時出現錯誤You must use the "set" method to update an entry.
。我正在使用Jamie Rumbelow的MY_Model來做到這一點。必須使用設置方法
$this->failed_login->insert_login_attempt($this->input->ip_address(),
$post_username,
gmdate('Y-m-d H:i:s', time()));
public function insert_login_attempt($user_ip_address, $username,
$datetime_of_attempt)
{
$failed_attempt = array(
'user_ip_address' => $user_ip_address,
'username' => $username,
'datetime');
$this->db->insert($failed_attempt);
}
搜索該消息的代碼庫並從那裏回溯。 –