How to get querystring/search params to be used in an useEffect?

I am trying to get a search param (id) from the url to be used in a REST API call (client.adsGET2).

The problem I am facing is that the id is only set after the API call has been executed. How can I get the search param into the useffect function?

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>"use client"; // This is a client component
import { useState, useEffect, Suspense } from 'react';
import { Client } from '@/generated/generated_admanager_client';
import withAuth from '@/components/with-auth';
import { GetAdDto } from '@/generated/generated_admanager_client';
import { useRouter, useSearchParams } from 'next/navigation';
function AdElement(ad: GetAdDto) {
return (
<li key={ad.ulid}>
<h2>{ad.title}</h2>
<p>{ad.description}</p>
<p>{ad.creationDate?.toString()}</p>
</li>
);
}
function GetAd() {
const router = useRouter();
const [ad, setAd] = useState<GetAdDto>();
const [error, setError] = useState<string | null>(null);
let id;
console.log('1');
function Search() {
const searchParams = useSearchParams();
id = searchParams.get('id');
console.log('xxxxxxxxxxxxxxxxx');
console.log(searchParams);
console.log(id);
console.log('xxxxxxxxxxxxxxxxx');
return <input placeholder="Search..." />
}
console.log('2');
const adUlid = id;
console.log(adUlid);
useEffect(() => {
const client = new Client();
// Get the ad by the ulid
console.log('--------------- useffect');
console.log(adUlid);
console.log('/--------------- useffect');
if (adUlid) {
client.adsGET2(adUlid)
.then(response => {
console.log('--------------- response');
console.log(response);
setAd(response.ads[0]);
console.log('/--------------- response');
})
.catch(err => {
switch (err.status) {
case 400:
setError("Bad Request");
break;
case 401:
setError("Unauthorized");
break;
case 403:
setError("Forbidden");
break;
case 404:
setError("Not Found");
break;
case 500:
setError("Internal Server Error");
break;
default:
setError("Failed to fetch ads");
}
console.error("Error fetching ad:", err);
});
}
else {
//router.push('/ads/list.html');
return;
}
}, [adUlid, router]);
return (
<Suspense>
<div>
{error && <p>{error}</p>}
<ul>
{ad && AdElement(ad)}
</ul>
</div>
<Search />
</Suspense>
);
}
export default withAuth(GetAd);
</code>
<code>"use client"; // This is a client component import { useState, useEffect, Suspense } from 'react'; import { Client } from '@/generated/generated_admanager_client'; import withAuth from '@/components/with-auth'; import { GetAdDto } from '@/generated/generated_admanager_client'; import { useRouter, useSearchParams } from 'next/navigation'; function AdElement(ad: GetAdDto) { return ( <li key={ad.ulid}> <h2>{ad.title}</h2> <p>{ad.description}</p> <p>{ad.creationDate?.toString()}</p> </li> ); } function GetAd() { const router = useRouter(); const [ad, setAd] = useState<GetAdDto>(); const [error, setError] = useState<string | null>(null); let id; console.log('1'); function Search() { const searchParams = useSearchParams(); id = searchParams.get('id'); console.log('xxxxxxxxxxxxxxxxx'); console.log(searchParams); console.log(id); console.log('xxxxxxxxxxxxxxxxx'); return <input placeholder="Search..." /> } console.log('2'); const adUlid = id; console.log(adUlid); useEffect(() => { const client = new Client(); // Get the ad by the ulid console.log('--------------- useffect'); console.log(adUlid); console.log('/--------------- useffect'); if (adUlid) { client.adsGET2(adUlid) .then(response => { console.log('--------------- response'); console.log(response); setAd(response.ads[0]); console.log('/--------------- response'); }) .catch(err => { switch (err.status) { case 400: setError("Bad Request"); break; case 401: setError("Unauthorized"); break; case 403: setError("Forbidden"); break; case 404: setError("Not Found"); break; case 500: setError("Internal Server Error"); break; default: setError("Failed to fetch ads"); } console.error("Error fetching ad:", err); }); } else { //router.push('/ads/list.html'); return; } }, [adUlid, router]); return ( <Suspense> <div> {error && <p>{error}</p>} <ul> {ad && AdElement(ad)} </ul> </div> <Search /> </Suspense> ); } export default withAuth(GetAd); </code>
"use client"; // This is a client component  

import { useState, useEffect, Suspense } from 'react';
import { Client } from '@/generated/generated_admanager_client';  
import withAuth from '@/components/with-auth';
import { GetAdDto } from '@/generated/generated_admanager_client';
import { useRouter, useSearchParams } from 'next/navigation';
function AdElement(ad: GetAdDto) {  
    return (  
        <li key={ad.ulid}>  
            <h2>{ad.title}</h2>  
            <p>{ad.description}</p>  
            <p>{ad.creationDate?.toString()}</p>  
        </li>  
    );  
}  

function GetAd() {  
    const router = useRouter();
    const [ad, setAd] = useState<GetAdDto>();
    const [error, setError] = useState<string | null>(null);
    let id;
    console.log('1');

    function Search() {
        const searchParams = useSearchParams();
        id = searchParams.get('id');
        console.log('xxxxxxxxxxxxxxxxx');
        console.log(searchParams);
        console.log(id);
        console.log('xxxxxxxxxxxxxxxxx');

        return <input placeholder="Search..." />
    }

    console.log('2');
    const adUlid = id;
    console.log(adUlid);

    useEffect(() => {
        const client = new Client();

        // Get the ad by the ulid
        console.log('--------------- useffect');
        console.log(adUlid);
        console.log('/--------------- useffect');

        if (adUlid) {
            client.adsGET2(adUlid)
                .then(response => {
                    console.log('--------------- response');
                    console.log(response);
                    setAd(response.ads[0]);
                    console.log('/--------------- response');
                })
                .catch(err => {
                    switch (err.status) {
                        case 400:
                            setError("Bad Request");
                            break;
                        case 401:
                            setError("Unauthorized");
                            break;
                        case 403:
                            setError("Forbidden");
                            break;
                        case 404:
                            setError("Not Found");
                            break;
                        case 500:
                            setError("Internal Server Error");
                            break;
                        default:
                            setError("Failed to fetch ads");
                    }
                    console.error("Error fetching ad:", err);
                });
        }
        else {

            //router.push('/ads/list.html');
            return;
        }
    }, [adUlid, router]);

    return (
        <Suspense>
            <div>
                {error && <p>{error}</p>}
                <ul>
                    {ad && AdElement(ad)}
                </ul>
            </div>
            <Search />
        </Suspense>
    );
}

export default withAuth(GetAd);

You’re getting the id value in a component called Search, and not using it. And you’re trying to use the id value in a component called GetAd without getting the value first.

Why mix up the two?

If GetAd needs to use the search params, call useSearchParams in GetAd. For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>const searchParams = useSearchParams();
const adUlid = searchParams.get('id');
useEffect(() => {
// The adUlid value should be available here
}, [adUlid, router]);
</code>
<code>const searchParams = useSearchParams(); const adUlid = searchParams.get('id'); useEffect(() => { // The adUlid value should be available here }, [adUlid, router]); </code>
const searchParams = useSearchParams();
const adUlid = searchParams.get('id');

useEffect(() => {
  // The adUlid value should be available here
}, [adUlid, router]);

You might also consider moving the Search component outside of the GetAd component to avoid further confusion.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật