การเรียกใช้ cookie ใน Hono

#hono2 ต.ค. 2567

การเรียกใช้ cookie ใน Hono

เราไปดูวิธีการเรียกใช้ cookie ใน Hono กันครับ

การ get cookie

import {getCookie} from "hono/cookie";

const _x_user = getCookie(c, '_x_user')

การ set cookie

import {setCookie} from "hono/cookie";

setCookie(c, '_x_user', token)