标签: node.js moleculer
我已经尝试使用ctx.$location=“/targetpath”,但是转发的请求更改为get Method,而不是原始的post方法。
ctx.$location=“/targetpath”
答案 0 :(得分:0)
这不是分子问题。您应该设置307状态代码以保留方法。更多信息:https://stackoverflow.com/a/17612942/129346
ctx.meta.$statusCode = 307; ctx.meta.$location = "/targetpath";