html
lang
="en"
>
>
charset
="utf-8"
>
name
="viewport"
content
="width=device-width, initial-scale=1.0"
>
>
documenttitle
>
head
>
>
>
type
="text"
id="username"
>
p>
>
type
="text"
id="password"
>
p>
>
type
="button"
value
="提交"
id="btn"
>
p>
>
var btn = document.
getelementbyid
('btn'
)var username = document.
getelementbyid
('username'
)var password = document.
getelementbyid
('password'
) btn.
onclick
=function()
}script
>
body
>
html
>
node伺服器
var express =
require
('express'
)var path =
require
('path'
)var bodyparser =
require
('body-parser'
)express()
use(express.
static
(path.
join
(__dirname,
'public'))
)use
(bodyparser.
urlencoded()
)use
(bodyparser.
json()
)post
('/post'
,function
(req, res)
)listen
(3000
,function()
)
1、傳遞引數
post方法傳遞引數時需要在send中傳遞
2、請求頭需要設定
常用的有兩種型別
//使用表單傳遞引數時使用它
xhr.
setrequestheader
('content-type'
,)
//傳遞json物件時使用它
xhr.
setrequestheader
('content-type'
,)
3、傳遞json引數
傳遞json引數時,需要使用json.stringify()方法將其轉化為字串,才能傳遞。
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 物件 需要傳遞到伺服器端的引數。引數形式為...
Ajax中get請求和post請求
我們在使用ajax向伺服器傳送資料時,可以採用get方式請求伺服器,也可以使用post方式請求伺服器,那麼什麼時候該採用get方式,什麼時候該採用post方式呢?get請求和post請求的區別 1.使用get請求時,請求所帶的引數會跟在url後傳遞,而post請求則是作為http訊息的實體內容傳送給...