I enabled the express server locally and added http-proxy-middleware to act as a proxy, but there were some problems with the matching path
{ context:'^.*/ajax-.*', options:{ target:'http://xxxxx:xxxx' } }
This can successfully match the address in the format of xxx/ajax-xxx. But if the address becomes xxx/ajax-xxx/xxx, it cannot be matched. It seems that it can only match one /. I don’t know why. Please help.
'^.*/ajax-.*/**'
This is the current solution, it just feels very awkward. . If you have a good way, I’ll add it here