mirror of
https://github.com/v2board/v2board.git
synced 2025-06-15 06:07:49 +08:00
update: add etag
This commit is contained in:
@ -55,10 +55,14 @@ class DeepbworkController extends Controller
|
||||
unset($user['email']);
|
||||
array_push($result, $user);
|
||||
}
|
||||
$eTag = sha1(json_encode($result));
|
||||
if ($eTag === $request->header("IF-NONE-MATCH")) {
|
||||
abort(304);
|
||||
}
|
||||
return response([
|
||||
'msg' => 'ok',
|
||||
'data' => $result,
|
||||
]);
|
||||
])->header('ETag', $eTag);
|
||||
}
|
||||
|
||||
// 后端提交数据
|
||||
|
Reference in New Issue
Block a user