摘要:
1. 报错: supervisorctl restart allunix:///var/run/supervisor.sock no such file 原因:supervisor管理的服务未启动 解决:supervisord -c /etc/supervisor/supervisord.conf 阅读全文
摘要:
报错:ImportError: cannot import name 'smart_text' from 'django.utils.encodin 解决:将 smart_test --》 smart_str 报错:ImportError: cannot import name 'ugettext_ 阅读全文
摘要:
根url urlpatterns = [ path('', include('root.urls')), ] root应用url from django.urls import path from . import views urlpatterns = [ path('', views.index 阅读全文
摘要:
docker + vue2 + flask + nginx 项目部署 前后端项目启动 点击页面,前端打印台出现:net::ERR_CONNECTION_REFUSED 原因:后端端口问题 5000端口 容器与宿主机没有进行映射,映射完即可正常访问 阅读全文
摘要:
执行:npm run serve 出现:error:0308010C:digital envelope routines::unsupported 原因:npm 版本升级 解决:package.json 增加配置 "scripts": { "serve": "set NODE_OPTIONS ope 阅读全文
摘要:
Error: unable to start container 问题:podman 修改存储文件之后无法起容器 解决:重启podman服务:systemctl restart podman 阅读全文
摘要:
css类 <template> <div class="home"> <HelloWorld msg="Welcome to Your Vue.js App"/> </div> </template> <style> .home { height: 100%; width: 100%; backgr 阅读全文
摘要:
1. 安装 npm install element-plus --save 2. main.js 引入 import * as Elicons from "@element-plus/icons-vue"; for (const name in Elicons) { app.component(na 阅读全文
摘要:
解决:sda 没有文件系统格式 格式化磁盘即可:mkfs -t ext2 /dev/sda 挂载即可:mount /dev/sda /mnt 阅读全文
摘要:
1. 安装 npm install vue-router --save vue2 会有版本兼容问题:npm install vue-router@3.5.2 2. 配置 在src文件夹下新建router文件夹,在router文件夹中新建index.js // 导入路由对象 import Router 阅读全文