3
我begginer開放購物車,我試着建立子菜單面板管理員,文件名是item.php,我只是想插入數據庫(head_text_field,title_text_field和最大)&(表是show_product),我嘗試按照insert data into database with codeigniter ,但還是錯誤,錯誤是調用未定義的方法DB ::插入()型號\項目\ item.php如何使用opencart將數據插入數據庫?
編輯第1部分:當我刪除模型驗證碼:
return $this->db->insert('show_product', $data);
而且用此代碼更改:
$this->db->query("INSERT INTO" . DB_PREFIX . "show_product SET head_text = '" . $this->db->escape($data['head_text_field']) . "', title_text = '" . $this->db->escape($data['title_text_field']) . "', max_item = '" . $this->db->escape($data['max']) . "'");
它的工作,但在數據庫中仍空?
這是在控制器(Controller /項目/ item.php)
class ControllerItemItem extends Controller { //Controller/Item/Item.php
private $error = array();
public function index() {
$this->language->load('item/item');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('item/item');
$this->getList();
}
protected function getList(){
if (isset($this->request->get['head_text_field'])){
$head_text_field = $this->request->get['head_text_field'];
} else {
$head_text_field = null;
}
if (isset($this->request->get['title_text_field'])){
$title_text_field = $this->request->get['title_text_field'];
} else {
$title_text_field = null;
}
if (isset($this->request->get['max'])){
$max = $this->request->get['max'];
} else {
$max = null;
}
if(isset($this->request->get['product'])){ // product have array in view e.g <input name=product[]>
$product = $this->request->get['product'];
$products = array();
foreach($product as $p)
{
$products[] = array($p);
}
}else {
$product = null;
}
// BREADCRUMBS //
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false
);
$this->data['breadcrumbs'][] = array(
'text' => $this->language->get('text_module'),
'href' => $this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => ' :: '
);
$this->data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('module/item', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => ' :: '
);
// END //
// Call Language //
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['entry_head'] = $this->language->get('entry_head');
$this->data['entry_title'] = $this->language->get('entry_title');
$this->data['entry_product'] = $this->language->get('entry_product');
$this->data['entry_max_item'] = $this->language->get('entry_max_item');
$this->data['button_save'] = $this->language->get('button_save');
$this->data['button_cancel'] = $this->language->get('button_cancel');
// END //
$this->data['cancel'] = $this->url->link('item/item', 'token=' . $this->session->data['token'], 'SSL');
$this->data['action'] = $this->url->link('item/item/insert', 'token=' . $this->session->data['token'], 'SSL');
$this->template = 'item/item.tpl';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render());
}
public function insert()
{
$this->language->load('item/item');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('item/item');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_item_item->insert_head($data);
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
$this->redirect($this->url->link('item/item', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
}
protected function validateForm() {
if (!$this->user->hasPermission('modify', 'catalog/product')) {
$this->error['warning'] = $this->language->get('error_permission');
}
if ((utf8_strlen($this->request->post['head_text_field']) < 1) || (utf8_strlen($this->request->post['head_text_field']) > 64)) {
$this->error['head'] = $this->language->get('error_head');
}
if (!$this->request->post['title_text_field']) {
$this->error['title'] = $this->language->get('error_title');
}
if (!$this->error) {
return true;
} else {
return false;
}
}
}
這是型號(型號\項目\ item.php)
class ModelItemItem extends Model {
public function insert_head()
{
$head_text_field = $this->get['head_text_field'];
$title_text_field = $this->get['title_text_field'];
$max = $this->get['max'];
$data = array(
'head_text_field' => $head_text_field,
'title_text_field' => $title_text_field,
'max' => $max
);
return $this->db->insert('show_product', $data);
//$this->db->query("INSERT INTO" . DB_PREFIX . "show_product SET head_text = '" . $this->db->escape($data['head_text_field']) . "', title_text = '" . $this->db->escape($data['title_text_field']) . "', max_item = '" . $this->db->escape($data['max']) . "'");
}
}
Thx對於你的建議,我已經試過這樣:$ this-> db-> query(「INSERT INTO」)。 DB_PREFIX。 「show_product SET head_text ='」。 $ this-> db-> escape($ data ['head_text_field'])。 「',title_text ='」。 $ this-> db-> escape($ data ['title_text_field'])。 「',max_item ='」。 $ this-> db-> escape($ data ['max'])。 「'」);實際上它工作得很好,但是在數據庫中仍然是空的? – Vilthering
在你的查詢中缺少一些空格 –
哦你在INTO的權利「應該是INTO」,對不起,如果你不介意我再問一次,爲什麼數據庫中的值爲空? (成功進入數據庫,但爲空值)我犯錯了嗎? – Vilthering