I am in very critical trouble, let me explain
I am creating a full stack application with next js 13, I have created an API that is perfectly working in dev(npm run dev) mode but the problem is when I give the build command(npm run build) then it shows the flowing error. Please anybody bring me out of the problem. Error Screenshot - https://prnt.sc/VaN1wHifqK_2
[Error]: Dynamic server usage: Page couldn't be rendered statically because it used `nextUrl.searchParams`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error
Here is my code. This is the API function for getting users from the database using url searchParams
// /backend/apiControllers/getUsers.js
import prisma from "@/prisma/prismaClient";
export const getUsers = async (request) => {
const { nextUrl } = request; // here is the problem, this is working for dev mode but not in production build mode.
const email = nextUrl.searchParams.get("email") || "";
const phone = nextUrl.searchParams.get("phone") || "";
const id = nextUrl.searchParams.get("id") || "";
let queryParam = {};
if (email) {
queryParam = {
where: {
...queryParam.where,
email: {
equals: email,
mode: "insensitive",
},
},
};
}
if (phone) {
queryParam = {
where: {
...queryParam.where,
phone: {
equals: phone,
},
},
};
}
if (id) {
queryParam = {
where: {
...queryParam.where,
id: {
equals: id,
},
},
};
}
try {
const users = await prisma.users.findMany(queryParam);
return users;
} catch (error) {
return { apiMessage: { errorMsg: "Unable to find User details" } };
}
};
And I have called that function into /app/api/armies/route.js
// /app/api/armies/route.js
import { getUsers } from "@/backend/apiControllers/getUsers";
import { connectDB } from "@/backend/utils/dbConnect";
import { NextResponse } from "next/server";
export const GET = async (request) => {
try {
await connectDB();
const users = await getUsers(request); //called here
return NextResponse.json(users);
} catch (error) {
console.log(error);
return NextResponse.json({
apiMessage: { errorMsg: "Internal Server Error, Please try again later" },
});
}
};
I have tried the following method also "const url = new URL(request.url);" but the same error, Here is the error screenshot - https://prnt.sc/Z3D317lDQ3CP
import prisma from "@/prisma/prismaClient";
export const getUsers = async (request) => {
const url = new URL(request.url); // here is the problem, this is working for dev mode but not in production build mode.
const email = url.searchParams.get("email") || "";
const phone = url.searchParams.get("phone") || "";
const id = url.searchParams.get("id") || "";
let queryParam = {};
if (email) {
queryParam = {
where: {
...queryParam.where,
email: {
equals: email,
mode: "insensitive",
},
},
};
}
if (phone) {
queryParam = {
where: {
...queryParam.where,
phone: {
equals: phone,
},
},
};
}
if (id) {
queryParam = {
where: {
...queryParam.where,
id: {
equals: id,
},
},
};
}
try {
const users = await prisma.users.findMany(queryParam);
return users;
} catch (error) {
return { apiMessage: { errorMsg: "Unable to find User details" } };
}
};
But again the same error
In Next.js, Every page and route handler are static by default then Next.js will (bail out) opt out to dynamic rendering when using Runtime data such as
searchParams
orheaders
. The way Next.js knows when dynamic data is used is by throwing custom errors and catch them to switch the renderer method. Simply, when you use the request URL (e.g.request.nextUrl
) Next.js internally will throwDynamicServerError
and catch it at a top-level.Let's look at this snippet from your code:
Note*: Read the comments in the code block if you haven't
Did you get it?
How to solve it?
We have two solutions:
try/catch
statmentsThis way, Next.js will throw its errors and catch them without a stumbling block.
You can also, catch all errors then re-throw Next.js-specific errors to handle them. Next.js provides some utilities to know the error.
When using some of Next.js functions inside
try
you need to re-throw them. for example,isNotFoundError
fornotFound()
,isRedirectError
forredirect
.