优化记录存储

This commit is contained in:
2023-11-07 10:04:54 +08:00
parent aed08bc7a1
commit 789d1dc395
5 changed files with 46 additions and 44 deletions

View File

@@ -14,6 +14,13 @@ use think\model\Relation;
class Post extends Common
{
public function initialize()
{
if ($this->request->action() != 'markVisit') {
parent::initialize();
}
}
/**
* 显示指定的资源.
*
@@ -52,6 +59,7 @@ class Post extends Common
->limit(12)
->cache(60)
->select();
View::assign('post', $model_post);
View::assign('list_last_visit', $list_last_visit);
@@ -96,9 +104,7 @@ class Post extends Common
public function markVisit($visit_id)
{
$model_visit = PostVisit::find($visit_id);
$model_visit->is_js_run = 1;
$model_visit->save();
PostVisit::where('id', $visit_id)->update(['is_js_run' => 1]);
return json_message();
}