Is there a way to return a response (from make_response() object or similar) with certain properties so that it doesn’t render the page again and doesn’t do anything else either. I am trying to run a code on the server without generating any output
A simple ‘return None’ produces:
ValueError: View function did not return a response
This should be possible because the following only downloads a file and doesn’t render the template:
myString = "First line of a document" response = make_response(myString) response.headers["Content-Disposition"] = "attachment; filename=myFile.txt" return response
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You are responding to a request, your HTTP server must return something. The HTTP ’empty response’ response is 204 No Content:
return ('', 204)
Note that returning a file to the browser is not an empty response, just different from a HTML response.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0