ホームページ > 記事 > ウェブフロントエンド > Pocketbase pb_hooks - ユーザー認証のチェック
pb_hooks を使用するときに認証されたユーザーを確認する方法について、pocketbase のドキュメントはそれほど明確ではありません
それは本当に簡単であることがわかりました
https://pocketbase.io/docs/js-routing/#sending-request-to-custom-routes-using-the-sdks
https://pocketbase.io/jsvm/functions/_apis.requireAdminOrRecordAuth.html
// main.pb.js // This is a simple GET route, that is protected routerAdd("GET", "/private", (c) => { const data = { message : "This can only be accessed if you are logged in" } return c.json(200, data) // Adding the $apis.requireAdminOrRecordAuth() argument, ensures the route is protected unless the user is logged in. }, $apis.requireAdminOrRecordAuth()); // This is a simple GET route, that is public routerAdd("GET", "/public", (c) => { const data = { message : "This can be be accessed by public" } return c.json(200, data) });
その後、pocketbase を使用してルートを呼び出すだけです
// let fetchData = async () => { let resp = await pocketBaseClient.pb.send("/private", { }); console.log(resp) }
以上がPocketbase pb_hooks - ユーザー認証のチェックの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。