gpt4 book ai didi

javascript - 向请求添加新 header ,同时保留正文

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:23:57 26 4
gpt4 key购买 nike

我正在为我的公司内部使用设置 PWA。我应该使用什么方法将不记名 token 附加到来自 dom 或 web-worker 的所有请求。

我使用的这种方法在发布 formjson 时按预期工作,但我想要一种更简洁或更友好的方法,因为我不相信 text 回退就足够了。

我在 Google 的 workbox.js 服务 worker 模块中寻找一个函数,看看我是否可以设置一个拦截器,以便在向我的服务器发出请求时始终附加 Bearer token ,因为这将解决我最终的问题首先在这里。此代码基于 Firebase Service Worker setup .并且没有任何东西可以获取并将发布数据重新添加到新请求,从而有效地丢弃了整个 POST 主体。

这是我最终得到的代码。

self.addEventListener( 'fetch', ( event ) => {
const requestProcessor = async ( idToken ) => {

let req = event.request;

// For same origin https requests, append idToken to header.
if ( self.location.origin == getOriginFromUrl( event.request.url ) &&
( self.location.protocol == 'https:' ||
self.location.hostname == 'localhost' ) &&
idToken ) {


let contentType = req.headers.get( "Content-Type" );

// Clone headers as request headers are immutable.
const headers = new Headers();
for ( let entry of req.headers.entries() ) {
headers.append( entry[ 0 ], entry[ 1 ] );
}
// Add ID token to header.
headers.append( 'Authorization', 'Bearer ' + idToken );
try {

let tmpReq = req.clone();
let body = "";

if ( req.body ) {
body = req.body;

} else if ( req.method === "POST" ) {
// get the post data if its json
if ( contentType === "application/json" ) {
// get JSON data
let json = await tmpReq.json();
body = JSON.stringify( json );

// Get the post data if its a submitted form
} else if ( contentType === "application/x-www-form-urlencoded" ) {
// get Form-Data
body = await tmpReq.formData();

// Get the post data as plain text as a fallback
} else {
body = await tmpReq.text();
}

console.log( "Content", content );
}

// create a new request with the Bearer Token and post body
req = new Request( req.url, {
method: req.method,
headers: headers,
mode: 'same-origin',
credentials: req.credentials,
cache: req.cache,
redirect: req.redirect,
referrer: req.referrer,
body: body,
bodyUsed: req.bodyUsed,
context: req.context
} );

} catch ( e ) {
// This will fail for CORS requests. We just continue with the
// fetch caching logic below and do not pass the ID token.
}

}
return fetch( req );
};
// Fetch the resource after checking for the ID token.
// This can also be integrated with existing logic to serve cached files
// in offline mode.
event.respondWith( getIdToken().then( requestProcessor, requestProcessor ) );
} );

所以总而言之,我的问题是... 当 POST 的 contentType 既不是 JSON 也不是 FormData 时,我添加的 text() 是回退吗 将涵盖所有 Angular ,或者我应该考虑一种传输 POST 正文的新方法

最佳答案

如果你想修改一个Request,保留body但使用新的或更新的headers,最简单的方法是传入原始请求作为 Request 构造函数的第一个参数,类型为 RequestInfo ;它可以是字符串 URL,也可以是现有的 Request 对象。您在第二个参数中指定的任何字段,类型为 RequestInit , 将覆盖原始响应中的字段。

如果您想在保留原始请求的所有 header 的同时添加一个额外的 header 值,这会变得有点棘手,因为默认情况下,如果您只在 headers 中提供新值,那将覆盖所有原始 header 。因此,您需要确保将 headers 设置为原始 header 和新 header 的组合。

下面是一些说明这一点的代码:

// This request might be created implicitly by the web app,
// but let's just create it manually as an example:
const originalRequest = new Request('https://example.com', {
body: 'shared body',
method: 'POST',
headers: {
'x-header': 'my header value'
},
});

// Start with the original headers as a baseline:
const modifiedHeaders = new Headers(originalRequest.headers);
// Make any changes you want:
modifiedHeaders.set('Authorization', 'Bearer 12345');

// Create a new request based on the original,
// with the modified headers:
const modifiedRequest = new Request(originalRequest, {
headers: modifiedHeaders,
});

// Everything else in modifiedRequest should be as-is,
// but the headers will be updated.
// Do whatever you want with modifiedRequest at this point.

需要注意的一点是,使用这种方法,原始请求的主体将在您构建修改后的请求时最终被使用。这在您的用例中应该无关紧要,因为只有修改后的请求的 body 最终会被读取(当您将其传递给 fetch() 时)。如果出于某种原因,您确实需要读取两个 body,则首先对原始请求调用 clone(),例如

const modifiedRequest = new Request(originalRequest.clone(), {...});
// The two requests now have independent bodies.

关于javascript - 向请求添加新 header ,同时保留正文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54634641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com