gpt4 book ai didi

gruntjs - 使用 grunt-contrib-connect 指定 header

转载 作者:行者123 更新时间:2023-12-01 11:41:16 25 4
gpt4 key购买 nike

是否可能?如果可以,如何使用 grunt-contrib-connect 指定自定义 header ? ?

最佳答案

您可以编写自己的中间件并像这样指定req.headers:

grunt.initConfig({
connect: {
server: {
options: {
middleware: function(connect, options) {
return [
function(req, res, next) {
// If path has .json, accept json
if (url.parse(req.url).pathname.match(/\.json$/)) {
req.headers.accept = 'application/json';
}
next();
},
// then serve a static folder
connect.static('base/folder/')
]
},
}
}
},
});

关于gruntjs - 使用 grunt-contrib-connect 指定 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20504524/

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