diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-25 10:01:59 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-25 10:01:59 +0700 |
| commit | 51beb18b3709be2b798b7c14352c4aafccd20ed2 (patch) | |
| tree | 7db279af6b656745363cba8ad0b33f9472368816 /src/pages/api/shop/searchkey.js | |
| parent | 59f1eeb9cb59c8ad3ae2a02a0682d8f01e0bf3b3 (diff) | |
<Miqdad> when numfound = 0 redirect to 404 searchkey
Diffstat (limited to 'src/pages/api/shop/searchkey.js')
| -rw-r--r-- | src/pages/api/shop/searchkey.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/pages/api/shop/searchkey.js b/src/pages/api/shop/searchkey.js index f5546a36..51b92baf 100644 --- a/src/pages/api/shop/searchkey.js +++ b/src/pages/api/shop/searchkey.js @@ -1,4 +1,6 @@ import axios from 'axios'; +import { notFound } from 'next/navigation'; +import PageNotFound from '../../404'; export default async function handler(req, res) { const { url = '', page = 1, limit = 30, all } = req.query; @@ -32,10 +34,15 @@ export default async function handler(req, res) { headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, - } + }, ); - res.status(200).json(result.data); + const solrResponse = result.data; + if (solrResponse.response.numFound === 0) { + return res.status(404).json({ error: 'Not Found' }); + } else { + res.status(200).json(result.data); + } } catch (error) { console.error(error?.response?.data || error); res.status(500).json({ error: 'Internal Server Error' }); |
