在Chrome扩展中使用fetch发送null原始头,可以通过以下步骤实现:
"permissions": [
"https://example.com/"
]
fetch('https://example.com/api', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Origin': null
}
})
.then(response => response.json())
.then(data => {
// 处理响应数据
})
.catch(error => {
// 处理错误
});
在上述代码中,我们使用fetch函数发送GET请求到"https://example.com/api"。在headers中,我们设置了'Content-Type'为'application/json',并且将'Origin'设置为null,以发送null原始头。
领取专属 10元无门槛券
手把手带您无忧上云