-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow error pages with json bodies #1931
Comments
Something perhaps tidier that you can already do now is use a I'm not sure how we'd want |
The handle hook practically solves my 404 issue (thanks for pointing me to it!) export function get() {
return {
status: 200,
body: { "hello": "world" }
}
}
export async function handle({ request, resolve }) {
// Try to resolve the request like normal with one of the functions corresponding to an http method
const response = await resolve(request)
// If it returns falsy, it means we haven't given the http method a function
if (!response) {
const error = { "error": "badmethod", "message": "Method Not Allowed" }
const body = JSON.stringify(error)
return {
status: 405,
body: body,
headers: {
'content-type': 'application/json; charset=utf-8',
'Allow': 'GET, HEAD'
}
}
}
// Otherwise, return like normal
return response
} Looking through the sveltekit source, I think I might be able to make a pull request for this if this is acceptable. EDIT: |
This might also be related to #1857 |
I have a very same feature request, but different use case and proposed solution. Describe the problemI have a complex API consumed by 3rd party programs. I'd like to communicate errors in JSON. So far, I do something like export const get: RequestHandler = async ({ request, locals }) => {
try {
return { body: await getProductsByOwner(locals.ownerId) }
} catch (e) {
return { body: { error: e.message } }
}
} But it's very repetitive and verbose. I tried to catch the error in Describe the proposed solutionIf Alternatives consideredAllow creating Endpoint would export one default function with the same parameters as ImportanceNice to have |
Nowadays SvelteKit returns 405s automatically (it wasn't possible at the time this issue was raised). Related: #4477 |
Describe the problem
I'm making a full-stack website in SvelteKit, and am now working on my API. This api is located under
/api/*
. When a user requests from an unknown URI I want to send a 404 message. As the API responds with json, I would like to respond in the same manner with the error message. However, to my knowledge,__error.svelte
files only support html as an output.Describe the proposed solution
I can see two solutions
__error.json
fileI prefer number 2, as then I could also implement 405 Method Not Allowed errors.
Alternatives considered
For now, I'm using an endpoint like this:
this is located under
src/routes/api/[...error].ts
Although this works, it's pretty ugly imo and it doesn't cover all infinite custom http methods clients could be using.
Importance
nice to have
Additional Information
No response
The text was updated successfully, but these errors were encountered: