在VS中写接口可能会遇到接口地址是http或者是https的问题,这个时候 可以右键项目属性,进行修改你的iis地址,但是https的地址无法直接修改
需要在Properties 下面 有一个 launchSettings.json 中
"iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:44322", "sslPort": 44321 } }
sslPort 这个参数修改成你想要的https地址就可以了。