-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
例子中都是修改响应参数的,没看见有请求参数的修改,我通过下面的代码实现后,发现没有生效
module.exports = (server, options) => {
server.on('request', (req, res) => {
const originalCookie = req.headers.cookie || '';
const newCookieParts = [
originalCookie,
'custom_key1=123',
'custom_key2=456'
].filter(Boolean); // 防止空值
req.setReqRules({
reqHeaders: {
cookie: newCookieParts.join('; '),
'x-custom-header': 'customHeaderValue'
}
});
req.passThrough();
});
};
Metadata
Metadata
Assignees
Labels
No labels