Vertaling van "HttpResponse" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
In this case, I'd say your code smells because you want to pass an HttpResponse.
En este caso, diría vuestros olores de código porque quieres pasar un *HttpResponse.
It returns an HttpResponse object of the given template rendered with the given context.
La función retorna un objeto HttpResponse de la plantilla determinada creada con el contexto dado.
The HttpResponse object contains the response that is sent to the client, which includes all the rendered output and cookies.
El objeto HttpResponse contiene la respuesta que se envía al cliente, la cual incluye todos los resultados presentados y las cookies.
It's a very common idiom to load a template, fill a context and return an HttpResponse object with the result of the rendered template.
Es una práctica muy común cargar una plantilla, llenar un contexto y retornar un objeto HttpResponse con el resultado de la plantilla creada.
The render() function is a convenience function that generates HTML using a context and an HTML template, and returns it in an HttpResponse object.
La función render() es una función de conveniencia que genera HTML usando un contexto y una plantilla HTML, y devuelve un objeto HttpResponse.
Cookies are sent to the browser via the HttpResponse object that exposes a collection called Cookies.
Éstas se envían al explorador a través del objeto HttpResponse, que expone una colección denominada Cookies.
You can read the Expires property of a cookie that you have set in the HttpResponse object, before the cookie has been sent to the browser.
Nota: Puede leer la propiedad Expires de una cookie que haya establecido en el objeto HttpResponse antes de que la cookie se enviara al explorador.
Each view is responsible for doing one of two things: Returning an HttpResponse object containing the content for the requested page, or raising an exception such as Http404.
Cada vista es responsable de hacer una de dos cosas: retornar un objeto HttpResponse que incluye el contenido de la página solicitada, o levantar una excepción como Http404.
Django view function from django.http import HttpResponse def index(request): Get an HttpRequest (request) perform operations using information from the request.
Aquí importamos solo el objeto HttpResponse desde el módulo django.http de manera que podamos usarlo en nuestra vista: from django.http import HttpResponse.
You can access the HttpResponse object as the Response property of your Page class.
Puede tener acceso al objeto HttpResponse como la propiedad Response de la clase Page.
The HttpContext class contains objects that are specific to the current application request, such as the HttpRequest and HttpResponse objects.
La clase HttpContext contiene objetos específicos de la solicitud de aplicación actual, como los objetos HttpRequest y HttpResponse.
After the application domain has been created and the HostingEnvironment object instantiated, ASP.NET creates and initializes core objects such as HttpContext, HttpRequest, and HttpResponse.
Una vez creados el dominio de aplicación y una instancia del objeto HostingEnvironment, ASP.NET crea e inicializa objetos de núcleo, como HttpContext, HttpRequest y HttpResponse.
Here we import just the HttpResponse object from the django.http module so that we can use it in our view: from django.http import HttpResponse.
Aquí importamos solo el objeto HttpResponse desde el módulo django.http de manera que podamos usarlo en nuestra vista: from django.http import HttpResponse.