version:2.2.2
file: php/home/ajax.php
我在跟点击”草稿"标签后列出所有草搞的代码。源码中是这样写的:
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' 的情况?
—— 代码看的不全,希望路过的大大帮忙看看是否有这个问题。
阅读全文
收起全文