@
SourceMan 具体怎么写
```
proxyTable: {
'/withDrawals': {
filter: function (path, req) {
return req.method === 'POST'
},
onProxyReq: function(reqProxy, req, res) {
reqProxy.method = 'GET'
return reqProxy
},
target: '/withDrawals'
},
'/rechargeMoney': {
filter: function (path, req) {
return req.method === 'POST'
},
onProxyReq: function(reqProxy, req, res) {
reqProxy.method = 'GET'
return reqProxy
},
target: '/rechargeMoney'
}
},
```