迅睿CMS框架是一款PHP8高性能·簡單易用的CMS開源開發(fā)框架,基于MIT開源許可協(xié)議發(fā)布,免費且不限制商業(yè)使用,是免費開源的產(chǎn)品,以萬端互聯(lián)為設(shè)計理念,支持的微信公眾號、小程序、APP客戶端、移動端網(wǎng)站、PC網(wǎng)站等多終端式管理系統(tǒng)。
聯(lián)系官方銷售客服
1835022288
028-61286886
站點應(yīng)用時,使用火車頭采集,內(nèi)容頁的描述description為0,不知道什么原因? 其它分站點都是正常的
入庫腳本發(fā)來看看
其它標(biāo)題、內(nèi)容、關(guān)鍵字都是正常的,只有描述description為空
<?php $this->_module_init('news'); // news 是模塊目錄 if ($_GET['action'] == 'category') { // 顯示欄目 foreach ($this->module['category'] as $t) { if ($t['child'] == 0 && $t['tid'] == 1) { echo '<h1>'.$t['name'].'<=>'.$t['id'].'</h1>'.PHP_EOL; } } } else { // 入庫數(shù)據(jù) $data = $_REQUEST; // 發(fā)布者id 1 $data['uid'] = 1; // 發(fā)布者賬號 admin $data['author'] = 'admin'; // 主表字段 $fields[1] = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR)); $cache = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_category_data')); $cache && $fields[1] = array_merge($fields[1], $cache); // 附表字段 $fields[0] = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_data_0')); $cache = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_category_data_0')); $cache && $fields[0] = array_merge($fields[0], $cache); // 去重復(fù) $fields[0] = array_unique($fields[0]); $fields[1] = array_unique($fields[1]); $save = []; // 主表附表歸類 foreach ($fields as $ismain => $field) { foreach ($field as $name) { isset($data[$name]) && $save[$ismain][$name] = $data[$name]; } } if (!$data['catid']) { exit('欄目為空'); } $save[1]['uid'] = $save[0]['uid'] = $data['uid']; $save[1]['catid'] = $save[0]['catid'] = $data['catid']; $save[1]['url'] = ''; $save[1]['status'] = 9; //9表示正常發(fā)布,1表示審核里面 $save[1]['hits'] = 0; $save[1]['displayorder'] = 0; $save[1]['link_id'] = 0; $save[1]['inputtime'] = $save[1]['updatetime'] = SYS_TIME + rand(0, 7200); $save[1]['inputip'] = '127.0.0.1'; // 驗證標(biāo)題重復(fù) if ($this->content_model->table(SITE_ID.'_'.MOD_DIR)->where('title', $save[1]['title'])->counts()) { echo '重復(fù)';exit; } $rt = $this->content_model->save(0, $save); if ($rt['code']) { exit('成功'); } else { exit('失敗'); } } exit;
接口沒有問題,只能說明火車采集數(shù)據(jù)發(fā)過來的值就是0了;或者入庫后被過濾了;這兩個可能性
我看本地采集的數(shù)據(jù),確實是NULL
入庫腳本發(fā)來看看
其它標(biāo)題、內(nèi)容、關(guān)鍵字都是正常的,只有描述description為空
接口沒有問題,只能說明火車采集數(shù)據(jù)發(fā)過來的值就是0了;或者入庫后被過濾了;這兩個可能性
我看本地采集的數(shù)據(jù),確實是NULL