随笔分类 - 常见问题解决方案 - 杂七杂八
摘要:FastAPI 的依赖注入 FastAPI 有一个非常强大但直观的依赖注入系统 它被设计为非常易于使用,并且使任何开发人员都可以非常轻松地将其他组件与 FastAPI 集成 什么是依赖注入 在编程中,为保证代码成功运行,先导入或声明其所需要的【依赖】,如子函数、数据库连接等等 将依赖项的返回值注入到
阅读全文
摘要:问题背景 app.run() 添加了 host、port、debug 参数,运行后发现没有生效,咋肥事! 解决方案 要打开 debug 模式的话,勾选 FLASK_DEBUG 就好啦 再次运行,发现已经生效了
阅读全文
摘要:问题背景 brew install autojump Error: /usr/local/Homebrew is not writable. You should change the ownership and permissions of /usr/local/Homebrew back to
阅读全文
摘要:背景 本地打开了 Charles postman 发起 post 请求无法正常发出,报错:Error: self signed certificate 解决方案 关掉开关就好了
阅读全文
摘要:问题背景 直接 adb install 包名 无法安装成功 解决方案 安装 adb -s 10.200.241.215:5555 install test.apk 删除 adb -s 10.200.241.215:5555 uninstall apk包名
阅读全文