-
-
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
"parent is not a function" when requesting page endpoint #5936
Comments
I've been struggling with this, thanks for this one. I think I am experiencing the same right now. |
What's the use case for making an At the very least the current behaviour would conflict with #5896. |
I'm only using I don't expect the router to decide which headers it believes in. I need to be able to decide what routes and methods my app responds to and how. If a router isn't capable of supporting that then IMO it isn't really a true router anymore. |
I guess what I'm after is the ability to use the router at the lowest level. I think all the other stuff should be extras built on top of that, but should be extras, not replacements. It should still be possible to have a plain burger without the magical, erm, sprinkles on top. I appreciate some people will love all the extra form handling stuff, but I'd prefer to use ye-olde GET and POST directly myself if I want to. I'm probably mixing up a few requests, but they are all inter-related (the server endpoint co-existence and the form actions). |
RIght, but that's all covered by #5896, no? |
@Rich-Harris You don't need two endpoint files for the same thing, my use case (posted this in the wrong issue before):
With the new routing, I need now two files that do the same.
This broke my app. No chance to get this feature back? |
@Rich-Harris any reason not to let |
Once #5896 is implemented, you can do something like this: // src/routes/foo/+page.server.ts
export async function load({ fetch }) {
const response = await fetch('/foo?chunk=0', { accept: 'application/json' });
return response.json();
} // src/routes/foo/+server.ts
export async function GET({ request }) {
return getChunkFromDB(request);
} No duplication that way |
True! This is what I do as a work-around now with |
Don't want to annoy you guys but I still don't see any reason not to let |
Describe the bug
Requesting a
/+page.server.ts
load endpoint to do a GET request works, but fails if an await for parent data is added to it.Reproduction
Add
/+layout.server.ts
:Add
/+page.server.ts
:Request page with
accept: application/json
http header.Logs
System Info
Severity
blocking an upgrade
Additional Information
No response
The text was updated successfully, but these errors were encountered: