diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8 | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8')
-rw-r--r-- | files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8/index.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8/index.html b/files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8/index.html new file mode 100644 index 0000000000..5fa5eeedcd --- /dev/null +++ b/files/it/cambiamenti_di_xmlhttprequest_in_gecko1.8/index.html @@ -0,0 +1,17 @@ +--- +title: Cambiamenti di XMLHttpRequest in Gecko1.8 +slug: Cambiamenti_di_XMLHttpRequest_in_Gecko1.8 +tags: + - Estensioni + - Tutte_le_categorie + - XMLHttpRequest +translation_of: Mozilla/XMLHttpRequest_changes_for_Gecko_1.8 +--- +<p>Questo documento descrive alcuni dei cambiamento che sono stati fatti all'implementazione di <a href="it/XMLHttpRequest">XMLHttpRequest</a> di <a href="it/Gecko">Gecko</a> dalla versione 1.7 (che era usata per esempio da Firefox 1.0) alla 1.8. Queste modifiche si applicano solo alle estensioni e alle applicazioni in XUL. Non si applicano invece alle pagine web. +</p> +<h3 id="Cambiamenti_a_XMLHttpRequest.send" name="Cambiamenti_a_XMLHttpRequest.send"> Cambiamenti a XMLHttpRequest.send </h3> +<p>Se si passa un'istanza di <a href="it/NsIInputStream">nsIInputStream</a> al metodo <code>send</code>, non bisogna più includere le intestazioni <tt>Content-Length</tt> e <tt>Content-Type</tt> all'inizio dello stream. Invece, l'intestazione <tt>Content-Length</tt> verrà dedotta dalla lunghezza dello stream e <tt>Content-Type</tt> sarà specificato manualmente chiamando il metodo <code>setRequestHeader</code>. Queste modifiche sono pienamente documentate in <a class="external" href="http://lxr.mozilla.org/mozilla1.8/source/extensions/xmlextras/base/public/nsIXMLHttpRequest.idl#213">nsIXMLHttpRequest.idl</a>. +</p> +<h3 id="Cambiamenti_a_XMLHttpRequest.onreadystatechange" name="Cambiamenti_a_XMLHttpRequest.onreadystatechange"> Cambiamenti a XMLHttpRequest.onreadystatechange </h3> +<p>Il tipo di questo attributo ora è <code>nsIOnReadyStateChangeHandler</code>, non più <code>nsIOnReadystatechangehandler</code> (a S di State ora è maiuscola). +</p>{{ languages( { "en": "en/XMLHttpRequest_changes_for_Gecko1.8" } ) }} |