Vertaling van "responseText" 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.
Downloading; responseText holds partial data. 4
Assuming the parsing of the responseText succeeds, the handler checks if the result object indicates that the procedure is successful by checking the success property.
Suponiendo que el análisis de responseText se realiza correctamente, el manejador comprueba si el objeto result indica que el procedimiento es exitoso comprobando la propiedad success.
RegExp can be used if you always know the content of the HTML responseText beforehand.
RegExp se puede usar si de antemano conoces el HTML que vendrá en el responseText.
The first parameter passed to both is the native xmlHttpRequest object from which you can use its responseText and responseXML properties, respectively.
El primer parámetro pasado a ambas es el nativo XMLHTTPRequest objeto desde el que se puede usar sus responseText y responseXML propiedades, respectivamente.
The responseText attribute is a string containing the entire document returned by the request. responseStream
El atributo responseText es una cadena que contiene todo el documento devuelto por la solicitud.responseStream
In the previous example, after the response to the HTTP request was received we used the responseText property of the request object, which contained the contents of the test.html file.
En el ejemplo anterior se utilizo la propiedad reponseText del objeto pedido para mostrar el contenido de test.html una vez que la respuesta HTTP había sido recibida.
Strings are the common denominator of a lot of APIs (input fields, local storage values, XMLHttpRequest responses when using responseText, etc.) and it can be tempting to only work with strings.
Las cadenas son el denominador común de muchos APIs (campos de entrada, valores de almacenamiento local, respuestas XMLHttpRequest cuando se usa responseText, etc.) y puede ser tentador trabajarlo todo solamente con cadenas de caracteres.
If you use XMLHttpRequest to get the content of a remote HTML webpage, the responseText property is a string containing a "soup" of all the HTML tags, which can be hard to manipulate and analyze.
Si usas XMLHttpRequest para obtener el contenido de una página HTML remota, el responseText (texto de la respuesta) será una cadena que contenga una "sopa" de etiquetas HTML, lo que puede ser difícil de analizar y manipular.
Listing 4 shows a pattern that is more common today: taking the JSON-formatted responseText and parsing it into a native JavaScript object.
Si no existe la implementación nativa, El Listado 4 muestra un patrón que es más común hoy: tomar el responseText formateado en JSON y analizarlo en un objeto JavaScript nativo.
Commonly used properties are responseText, responseJSON (JSON object, if the response is in JSON) and status (the HTTP status of the response).
Las propiedades utilizadas habitualmente son responseText, responseJSON (objeto JSON, si la respuesta está en JSON) y status (el estado HTTP de la respuesta).
Alternatively, and somewhat safer, a responseText string attained through a XMLHttpRequest can be analyzed using RegExp to remove potential JavaScript problems, then loaded into the hidden iframe that you have set up
Por ejemplo, si una página ejecuta el comando común XMLHttpRequest se puede analizar con RegExp para remover problemas de javascript, luego cargada en un iframe oculto previamente establecido