未验证 提交 05586bdb 编写于 作者: J Jake Champion 提交者: GitHub
上级 d1d09fb8
...@@ -493,6 +493,18 @@ exercise.forEach(function(exerciseMode) { ...@@ -493,6 +493,18 @@ exercise.forEach(function(exerciseMode) {
assert.equal(req.headers.get('content-type'), 'application/x-www-form-urlencoded;charset=UTF-8') assert.equal(req.headers.get('content-type'), 'application/x-www-form-urlencoded;charset=UTF-8')
}) })
featureDependent(test, !IEorEdge, 'construct with URLSearchParams body and headers object sets Content-Type header', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post',
headers: {
"Accept": "text/html"
},
body: new URLSearchParams('a=1&b=2')
})
assert.equal(req.headers.get('content-type'), 'application/x-www-form-urlencoded;charset=UTF-8')
})
featureDependent( featureDependent(
test, test,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册