使用 JavaScript 和 MongoDB 查詢資料庫
使用 Prisma Client 編寫您的第一個查詢
現在您已經生成了 Prisma Client,您可以開始編寫查詢來讀取和寫入資料庫中的資料。為了本指南的目的,您將使用一個簡單的 Node.js 指令碼來探索 Prisma Client 的一些基本功能。
建立一個名為 index.js 的新檔案,並將以下程式碼新增到其中
const { PrismaClient } = require('@prisma/client')
const prisma = new PrismaClient()
async function main() {
// ... you will write your Prisma Client queries here
}
main()
.then(async () => {
await prisma.$disconnect()
})
.catch(async (e) => {
console.error(e)
await prisma.$disconnect()
process.exit(1)
})
以下是程式碼片段不同部分的快速概覽
- 從
@prisma/clientNode 模組匯入PrismaClient建構函式 - 例項化
PrismaClient - 定義一個名為
main的async函式,用於向資料庫傳送查詢 - 連線到資料庫
- 呼叫
main函式 - 當指令碼終止時關閉資料庫連線
在 main 函式內部,新增以下查詢以從資料庫讀取所有 User 記錄並列印結果
async function main() {
- // ... you will write your Prisma Client queries here
+ const allUsers = await prisma.user.findMany()
+ console.log(allUsers)
}
現在使用此命令執行程式碼
node index.js
這將列印一個空陣列,因為資料庫中還沒有 User 記錄
[]
將資料寫入資料庫
您在上一節中使用的 findMany 查詢僅從資料庫中“讀取”資料(儘管它仍然是空的)。在本節中,您將學習如何編寫查詢以將新記錄“寫入”到 Post、User 和 Comment 表中。
調整 main 函式以向資料庫傳送 create 查詢
async function main() {
await prisma.user.create({
data: {
name: 'Rich',
email: 'hello@prisma.com',
posts: {
create: {
title: 'My first post',
body: 'Lots of really interesting stuff',
slug: 'my-first-post',
},
},
},
})
const allUsers = await prisma.user.findMany({
include: {
posts: true,
},
})
console.dir(allUsers, { depth: null })
}
此程式碼使用巢狀寫入查詢建立新的 User 記錄以及新的 Post 記錄。User 記錄透過 Post.author ↔ User.posts 關係欄位分別連線到另一個記錄。
請注意,您正在將include選項傳遞給 findMany,它告訴 Prisma Client 在返回的 User 物件上包含 posts 關係。
使用此命令執行程式碼
node index.js
輸出應類似於此
[
{
id: '60cc9b0e001e3bfd00a6eddf',
email: 'hello@prisma.com',
name: 'Rich',
address: null,
posts: [
{
id: '60cc9bad005059d6007f45dd',
slug: 'my-first-post',
title: 'My first post',
body: 'Lots of really interesting stuff',
userId: '60cc9b0e001e3bfd00a6eddf',
},
],
},
]
該查詢向 User 和 Post 表添加了新記錄
User
| id | name | |
|---|---|---|
60cc9b0e001e3bfd00a6eddf | "hello@prisma.com" | "Rich" |
Post
| id | createdAt | title | content | published | authorId |
|---|---|---|---|---|---|
60cc9bad005059d6007f45dd | 2020-03-21T16:45:01.246Z | "My first post" | Lots of really interesting stuff | false | 60cc9b0e001e3bfd00a6eddf |
注意:
Post表中authorId列的唯一 ID 引用了User表的id列,這意味著id值60cc9b0e001e3bfd00a6eddf列因此指向資料庫中的第一條(也是唯一一條)User記錄。
在繼續下一節之前,您將使用 update 查詢向您剛剛建立的 Post 記錄新增一些評論。調整 main 函式如下
async function main() {
await prisma.post.update({
where: {
slug: 'my-first-post',
},
data: {
comments: {
createMany: {
data: [
{ comment: 'Great post!' },
{ comment: "Can't wait to read more!" },
],
},
},
},
})
const posts = await prisma.post.findMany({
include: {
comments: true,
},
})
console.dir(posts, { depth: Infinity })
}
現在使用與之前相同的命令執行程式碼
node index.js
您將看到以下輸出
[
{
id: '60cc9bad005059d6007f45dd',
slug: 'my-first-post',
title: 'My first post',
body: 'Lots of really interesting stuff',
userId: '60cc9b0e001e3bfd00a6eddf',
comments: [
{
id: '60cca420008a21d800578793',
postId: '60cca40300af8bf000f6ca99',
comment: 'Great post!',
},
{
id: '60cca420008a21d800578794',
postId: '60cca40300af8bf000f6ca99',
comment: "Can't wait to try this!",
},
],
},
]
太棒了,您剛剛首次使用 Prisma Client 將新資料寫入到資料庫中 🚀