diff options
author | btea <2356281422@qq.com> | 2021-10-26 09:23:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 22:23:44 +0800 |
commit | 8b36b50891dc031f1c84f00b4187a65dfeb37125 (patch) | |
tree | ccc31bb14446017c59707f2aa0471d011a3657fc | |
parent | 8c2c6747ebe8e44ca1cbf55aa67afa2e5d53b66b (diff) | |
download | translated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.tar.gz translated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.tar.bz2 translated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.zip |
fix ajax send formdata incorrect format (#2801)
* fix ajax send formdata incorrect format
* delete unnecessary code
-rw-r--r-- | files/zh-cn/web/api/xmlhttprequest/send/index.html | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/files/zh-cn/web/api/xmlhttprequest/send/index.html b/files/zh-cn/web/api/xmlhttprequest/send/index.html index 6b96c92ebd..6f692710cd 100644 --- a/files/zh-cn/web/api/xmlhttprequest/send/index.html +++ b/files/zh-cn/web/api/xmlhttprequest/send/index.html @@ -92,7 +92,6 @@ xhr.send(null); // xhr.send('string'); </code>// <code>xhr.send(new Blob()); // xhr.send(new Int8Array()); -// xhr.send({ form: 'data' }); // xhr.send(document);</code> </pre> @@ -111,7 +110,6 @@ xhr.send("foo=bar&lorem=ipsum"); // xhr.send('string'); </code>// <code>xhr.send(new Blob()); // xhr.send(new Int8Array()); -// xhr.send({ form: 'data' }); // xhr.send(document);</code> </pre> |