Skip to content

Why can't resource routes loaders and actions return raw responses like regular routes? #12912

Closed Answered by sergiodxa
jmjpro asked this question in Q&A
Discussion options

You must be logged in to vote

Because return { a: 1 } is not a response, is a JS object, you need to return a Response, the Response.json helps you create a new Response instance.

For non-resource routes if your loaders/actions returns a plain JS object then RR is passing that to the data response helper.

With the latest release a PR was released that loosen this restriction allowing you to send raw JS objects, and it will pass it to Response.json or return it as plain/text.

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by jmjpro
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants