public function draft_action() { if ($drafts = $this->model('draft')->get_all('answer', $this->user_id, intval($_GET['page']) * $this->per_page .', '. $this->per_page)) { foreach ($drafts AS $key => $val) { $drafts[$key]['question_info'] = $this->model("question")->get_question_info_by_id($val['item_id']); } }那段查询代码查询的 type 字段是 'answer'。然后我去数据库里看自己的记录,只有一个 type 为 'question' 的记录。—— 导致草搞列表显示我没有草搞。 然后似乎回复的时候是不会保存草搞的(快捷提问也不保存?),所以是否会有 type='answer' 的情况? —— 代码看的不全,希望路过的大大帮忙看看是否有这个问题。
AI智能回复搜索中,请稍后...