自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 [ubuntu]pm2 Error: Missing required argument #1

buntu 服务器上安装pm2时报错

2023-02-20 19:44:28 474

原创 ubuntu install mysql 5.7

ubuntu install mysql 5.7

2023-02-17 10:47:00 113

原创 M1 flutter运行iOS报错 Command MergeSwiftModule failed with a nonzero exit code

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk/usr/include/CommonCrypto/module.modulemap:1:8: error: redefinition of module 'CommonCrypto'module CommonCrypto [system] [extern_c] {^/Users/自己的用户名/

2021-07-29 15:54:04 725

原创 推荐一款flutter开发的应用,二次元相关的-动漫排名

以前就听说过世萌之类的,国内没怎么看到规模较大的投票网站,特别是二次元相关的无意间发现了这个站点,趁着人气少的时候承包自己喜爱的角色,哈哈

2021-05-31 07:48:12 211

原创 flutter 上传苹果商店 ITMS-90809: Deprecated API Usage — Apple will stop accepting submissions of apps that

准备上架苹果商店,苹果邮件反馈信息各种搜索后无解,并没有依赖使用了UIWebView但是,flutter_webview_plugin里面有这个注释,删掉后即可重新上传,亲测成功用Xcode打开项目中的ios目录后,搜索UIWebView, 删除 // UIWebView...

2020-05-09 11:05:43 869 2

原创 命令行 文件名中间有空格

文件名 my file命令行 my\ file 或 "my file" 或 'my file'例如:cat my\ filecat "my file"cat 'my file'参考文章 https://bbs.youkuaiyun.com/topics/290029583

2020-02-17 17:32:09 1110

原创 flutter 底部弹出框 顶部圆角

void _modalBottomSheetMenu() { showModalBottomSheet( backgroundColor: Colors.transparent, context: context, builder: (builder) { return new Container( ...

2020-02-13 10:09:16 1688

原创 apt或apt-get 安装的nginx 启动 停止 重启

/etc/init.d/nginx start 启动/etc/init.d/nginx stop 停止/etc/init.d/nginx restart 重启

2020-02-07 11:26:20 1165

原创 Flask 跨域问题 No 'Access-Control-Allow-Origin' header is present on the requested resource

最开始用from flask_cors import CORSCORS(app, resources={r"/*": {"origins": "*"}}, supports_credentials=True)POST方法还是有跨域问题,添加 'OPTIONS' 方法即可@app.route('/api', methods=["POST", 'OPTIONS'])前端是在vu...

2020-02-07 11:25:05 545

原创 错误提示gitlab ssh_exchange_identification: read: Connection reset by peer

已连接gitlab的本地仓库可以推代码新建远程仓库出和用ssh连接服务器提示同样错误Connection reset by peer解决方法:1)ssh工具登录git服务器2)vi /etc/hosts.deny 打开访问限制灰名单 进入命令行模式后 输入 /ip 检索当前ip 查找到当前ip之后,移除限制并保存3)vi /etc/hosts.allow 打开访问限制白名单 使用...

2020-02-01 16:23:26 2024

原创 vue create 项目时关闭eslint

修改package.json "eslintConfig": { "root": false, //这里的true改为false "env": { "node": false //这里的true改为false }, "extends": [ "plugin:vue/essential", "eslint:reco...

2020-01-29 10:36:07 1283

原创 vue框架写v-for循环 错误提示Elements in iteration expect to have 'v-bind:key' directives

<ul> <li v-for="item in list">{{item}}</li> </ul> <ul> <li v-for="item in list" :key='item'>{{item}}</li> </ul>Vue 2.2.0+的版...

2020-01-28 17:32:46 286

原创 阿里云轻量级服务器,connect:fail, reason: connect server 22 port fail

参考文章 https://blog.youkuaiyun.com/kinnisoy/article/details/90342034控制面板-远程连接-救援连接Ubuntu的情况:ufw allow 22 //打开防火墙22端口(默认的ssh端口)

2020-01-28 11:33:20 646

转载 解决 cnpm : 无法加载文件 C:\Users\hp\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本。

解决方法:1.以管理员身份运行power shell2.输入set-ExecutionPolicy RemoteSigned然后输入A 回车问题解决参考自:https://blog.youkuaiyun.com/y_0232/article/details/102555209

2020-01-04 16:33:45 11131 1

转载 django.urls.exceptions.NoReverseMatch: 'polls' is not a registered namespace

学习Django官方文档遇到的问题#polls.url 下添加一个app_name就好:from . import viewsapp_name = 'polls'urlpatterns = [...]

2020-01-04 11:59:10 1449

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除