【.net】本地调试运行只能用localhost的问题
文章来源:https://www.toymoban.com/news/detail-663047.html
解决方案
找到到项目目录下 隐藏文件夹 .vs /项目名称/config/applicationhost.config
<bindings>
<binding protocol="http" bindingInformation="*:1738:localhost" />
</bindings>
再加一条你要通过ip访问的地址并保存
<bindings>
<binding protocol="http" bindingInformation="*:1738:localhost" />
<binding protocol="http" bindingInformation="*:1738:192.168.1.100" />
</bindings>
打开ide vs
改成对应的地址
保存重新启动文章来源地址https://www.toymoban.com/news/detail-663047.html
到了这里,关于【.net】本地调试运行只能用localhost的问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!