首页 > 其他分享 >BUG:net::ERR_CONNECTION_REFUSED(前端Vue2、后端FastAPI)

BUG:net::ERR_CONNECTION_REFUSED(前端Vue2、后端FastAPI)

时间:2023-10-22 20:35:47浏览次数:42  
标签:__ ERR FastAPI 前端 REFUSED app

BUG场景

一个前后端分离的项目,前端使用Vue2框架,后端使用FastAPI,前端想要传输图片给后端,使用的相关接口为:

'http://10.96.67.161:8081/uploadImg/'

后端FastAPI运行的代码为:

if __name__ == '__main__':
    uvicorn.run(app="main:app", host="localhost", port=8081, reload=True)

前端控制台发生报错:

POST http://10.96.67.161:8081/uploadImg/ net::ERR_CONNECTION_REFUSED

解决方案

修改后端代码的localhost为本机IP:

if __name__ == '__main__':
    uvicorn.run(app="main:app", host="10.96.67.161", port=8081, reload=True)

参考文献

标签:__,ERR,FastAPI,前端,REFUSED,app
From: https://www.cnblogs.com/zh-jp/p/17781034.html

相关文章

  • progs/verifier_netfilter_retcode.c:42:1: error: unknown attribute 'btf_decl_tag'
    平台ubuntu20.04问题在linux内核源码目录下执行下面的命令时:root@ubuntu-vm:/mnt/linux-6.5/tools/testing/selftests/bpf#make报如下错误:progs/verifier_netfilter_retcode.c:41:1:error:unknownattribute'btf_decl_tag'ignored[-Werror,-Wunknown-attributes]__d......
  • Error creating bean with name 'org.springframework.web.servlet.handler.BeanNameU
    Errorcreatingbeanwithname'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping':Instantiationofbeanfailed;nestedexceptionisorg.springframework.beans.BeanInstantiationException:Failedtoinstantiate[org.springframework......
  • error link2038检测到_ITERATOR_DEBUG_LEVEL的不匹配项: 值“0”不匹配值“2”
    nmake.opt参考:https://blog.csdn.net/qq526495605/article/details/51852294......
  • BUG:cURL error 60: SSL certificate problem: unable to get local issuer certificat
    PHPssl证书问题(我的环境是phpstudy)解决方案:1.https://curl.se/docs/caextract.html 打开网址,下载最新PEM 2.将证书放进对应PHP版本extras/ssl文件里面3.修改对应版本的PHP.INI 4.重启PHP问题解决 ......
  • Golang sync包中errgroup的使用详解
    WaitGroup主要用于控制任务组下的并发子任务。它的具体做法就是,子任务goroutine执行前通过Add方法添加任务数目,子任务goroutine结束时调用Done标记已完成任务数,主任务goroutine通过Wait方法等待所有的任务完成后才能执行后续逻辑packagemainimport("ne......
  • fastapi接口参数限制
    路徑的例子Path(title="TheIDoftheitemtoget")查詢參數Query(title="Querystring",description="Querystringfortheitemstosearchinthedatabasethathaveagoodmatch",min_length=3,)body的字段Field(defau......
  • Uncaught TypeError: "element" is read-only
    UncaughtTypeError:"element"isread-only错误表明你尝试修改一个JavaScript变量或常量的值,但该变量或常量是只读的,不能被修改。通常,像const声明的变量是只读的,不允许重新分配。在你的代码中,如果你尝试修改一个const声明的变量element,那么就会触发这个错误。要解决这个......
  • fastapi设置超时时间
    方法一:应用级别的超时设置一种设置FastAPI应用程序全局超时时间的方法是使用TimeoutMiddleware中间件。以下是一个示例:fromfastapiimportFastAPIfromfastapi.middleware.timeoutimportTimeoutMiddlewarefromdatetimeimporttimedeltaapp=FastAPI()#设置应用......
  • [swin-trans]分布式训练的debug:ValueError: Error initializing torch.distributed us
    在用torch.distributed.init_process_group(backend='nccl',init_method='env://',world_size=world_size,rank=rank)时,出现1、ValueError:Errorinitializingtorch.distributedusingenv://rendezvous:environmentvariableMASTER_ADDRexpected,b......
  • CentOS 8 解决 Error: Failed to download metadata for repo 'appstream': Cannot pr
      原因CentOS-8于2021年12月31日停止了源的服务。 解决办法3.1.备份原有的yum源配置文件cd/etc/yum.repos.d/mkdirbak;cp*.repobak/执行如下命令,替换配置文件内容sed-i's/$releasever/8-stream/g'CentOS*repo刷新yum缓存即可yumclean;yummakecache......