post請求必須在請求報文中明確設定請求的型別
xhr.
setrequestheader
('content-type',)
;
post請求要寫在send方法裡
//post請求要把請求引數寫在send方法中
xhr.
send
(parase)
;
<
!doctype html>
"en"
>
"utf-8"
>
"viewport" content=
"width=device-width, initial-scale=1.0"
>
document<
/title>
<
/head>
"text" id=
"username"
>
<
/p>
"password" id=
"password"
>
<
/p>
"button" id=
'btn' value=
"提交"
>
<
/p>
var btn = document.
queryselector
("#btn");
btn.
onclick
=function()
}<
/script>
<
/body>
<
/html>
服務端**
const express =
require
('express');
//引入系統模組path
const path =
require
('path');
//引入第三方模組用於獲取post請求引數
const bodyparse =
require
('body-parser');
//建立伺服器
express()
;//在req下新增方法
use(bodyparse.
urlencoded()
);//設定靜態資源
use(express.
static
(path.
join
(__dirname,
'public'))
)//ajax傳遞post請求
post
('/post'
,(req,res)
=>
)listen(80
);console.
log(
'伺服器建立成功'
);
ajax使用POST傳遞引數
下邊是我找到的乙個例子http jeremy lee.blog.sohu.com 63843765.html post.html function alertcontents else function get obj server response post.php print r 下邊是我找到的...
AJAX請求 post方法的使用
使用jquery的 post方法可以以post形式向伺服器發起ajax請求。post方法是jquery的實用工具方法。post url,parameter callback type 引數 注釋 url string 字串 伺服器端資源位址。data map 物件 需要傳遞到伺服器端的引數。引數形式...
AJAX請求 post方法的使用
使用jquery的 post方法可以以post形式向伺服器發起ajax請求。post方法是jquery的實用工具方法。post url,parameter callback type 引數注釋 url string 字串 伺服器端資源位址。data map 物件 需要傳遞到伺服器端的引數。引數形式為...