gpt4 book ai didi

javascript - Nuxt代理配置: How do I create use Array mode?

转载 作者:行者123 更新时间:2023-12-02 21:43:30 29 4
gpt4 key购买 nike

nuxt-config.js中,为什么代理可以在对象模式下工作,但不能在数组模式下工作?

有效:将/api/v2/inventory/3906 代理到 nitro.noxgroup.co.za/v2/inventory/3906

proxy: {
'/api': {
target: 'https://nitro.noxgroup.co.za',
pathRewrite: {
'^/api': '/'
}
}
},

“数组模式”不起作用:此外,尝试代理货币兑换服务

proxy: [
{'/api': {
target: 'https://nitro.noxgroup.co.za',
pathRewrite: {
'^/api': '/'
}
}},
{'/api-currency': {
target: 'https://rate-exchange-1.appspot.com',
pathRewrite: {
'^/api-currency': '/'
}
}},
]

错误:

FATAL  [HPM] Missing "target" option. Example: {target: "http://www.example.org"}      

最佳答案

在数组模式下,配置由数组和字符串组成。如果您使用带有配置其数组的路径:

[ path, { ...config } ] 

不反对

{ [path]: { ... config } }

示例:

proxy: [
['/api', {
target: 'https://nitro.noxgroup.co.za',
pathRewrite: {
'^/api': '/'
}
}],
['/api-currency', {
target: 'https://rate-exchange-1.appspot.com',
pathRewrite: {
'^/api-currency': '/'
}
}],
]

关于javascript - Nuxt代理配置: How do I create use Array mode?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60323798/

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