如何将 loopback4 主屏幕重定向到 angular 8 应用程序 运行 其他端口
How to redirect the loopback4 home screen to angular 8 application running some other port
在环回 3 中,客户端根配置在 middilware.json 文件中定义,
"files": {
"loopback#static": {
"params": "$!../client"
}
},
就像在环回 4 中一样,application.ts 文件具有 lb4 主页的路径
// Set up default home page
this.static('/', path.join(__dirname, '../public'));
现在我正在使用 LB4 服务器和 Angular 8 应用程序,这里我需要重定向 lb4 主页是 angular 应用程序。如何配置这种情况?帮我解决这个问题..!
可以用this.redirect()
替换this.static()
:
this.redirect('/', 'https://www.example.com/');
参考资料
在环回 3 中,客户端根配置在 middilware.json 文件中定义,
"files": {
"loopback#static": {
"params": "$!../client"
}
},
就像在环回 4 中一样,application.ts 文件具有 lb4 主页的路径
// Set up default home page
this.static('/', path.join(__dirname, '../public'));
现在我正在使用 LB4 服务器和 Angular 8 应用程序,这里我需要重定向 lb4 主页是 angular 应用程序。如何配置这种情况?帮我解决这个问题..!
可以用this.redirect()
替换this.static()
:
this.redirect('/', 'https://www.example.com/');