sqlite 角幅API布线

niwlg2el  于 2022-11-15  发布在  SQLite
关注(0)|答案(3)|浏览(147)

我正在做一个Angular 网络项目,在那里我有一个Angular 网站,它与使用SQLlite数据库的网络API通信。
由于我不熟悉ANGLING,现在我遇到了一个错误,即使我的代理配置被设置为API的端口,但请求被发送到错误的端口,在那里我应该为我的站点和API/数据库之间的流量设置正确的路由。
发送请求时遇到的错误:

Http failure response for http://localhost:4200/api/Account/AuthenticateUser: 404 Not Found

我的代理配置:

{
"/api": {
  "target": "http://localhost:44366/",
  "secure": false,
  "changeOrigin": true,
  "logLevel": "debug"
}

}
方晶石:enter image description here

注意:我正在继续一个已有项目的工作

gzszwxb4

gzszwxb41#

通过在发布模式(而不是调试模式)下运行应用程序,修复了此问题

gblwokeq

gblwokeq2#

使用Like:

Const Routers:Routs=[{Path:‘’,Component:StartScreenComponent,pathMatch:“Full”},{Path:‘LOGIN’,Component:LoginComponent},{Path:‘欢迎’,Component:WelcomeComponent},]

ehxuflar

ehxuflar3#

如果您想使用HTTPS,请尝试如下所示:

{
  "/api": {
     "target":  {
       "host": "localhost",
       "protocol": "https",
       "port": 44366
     },
     "secure": false,
     "logLevel": "debug"
  }
}

并使用以下命令运行它:

ng serve --proxy-config ${your-proxy-file-name}.json --open --host 0.0.0.0 --disable-host-check

相关问题