会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
精通 IOS,Android,Java,Php,Net,前端,等各种尖端科技, 熟知军事战略,大国博弈,生命演化,宇宙尽头,别问为什么,AI会等于我会,AI不会我也不会。
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
18
19
20
21
22
23
24
25
26
···
44
下一页
2023年2月22日
创建 vue+vite 项目
摘要: 搭建第一个 Vite 项目 npm npm create vite@latest yarn yarn create vite 然后按照提示操作即可! 你还可以通过附加的命令行选项直接指定项目名称和你想要使用的模板。例如,要构建一个 Vite + Vue 项目,运行: # npm 6.x npm cr
阅读全文
posted @ 2023-02-22 16:15 龙卷风吹毁停车场
阅读(89)
评论(0)
推荐(0)
2023年1月18日
git 报错 fatal: unable to access 'http://git.c521....../': Send failure: Connection was reset
摘要: 一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错。控制台输入: git config --global http.sslVerify "false" 重新执行git操作
阅读全文
posted @ 2023-01-18 19:02 龙卷风吹毁停车场
阅读(291)
评论(0)
推荐(0)
git 报错 fatal: unable to access 'http://git.c5......./': Recv failure: Connection was reset
摘要: 控制台输入git命令: git config --global --unset http.proxy git config --global --unset https.proxy 以管理员打开cmd窗口输入 ipconfig/flushdns 然后从新执行git操作
阅读全文
posted @ 2023-01-18 19:01 龙卷风吹毁停车场
阅读(549)
评论(0)
推荐(0)
git 推送报 fatal: unable to access 'http://git.c521h.................../': Empty reply from server
摘要: 1.如果您为 VPN 配置了代理,则需要登录到您的 VPN 才能使用代理。 2.要在 VPN 之外使用它,请使用 unset 命令: git config --global --unset http.proxy git config --global --unset https.proxy 参考:
阅读全文
posted @ 2023-01-18 10:02 龙卷风吹毁停车场
阅读(599)
评论(0)
推荐(0)
2022年12月28日
vue 使用 antv/g2
摘要: 效果: 安装: npm install @antv/g2 --save 引入: import { Chart } from '@antv/g2'; 使用: <div id="c1"></div> LeftChart() { const chart = new Chart({ container: '
阅读全文
posted @ 2022-12-28 16:48 龙卷风吹毁停车场
阅读(839)
评论(0)
推荐(0)
2022年12月12日
react-native 类函数式监听路由变化,页面每次显示执行方法
摘要: 在 componentDidMount 函数中添加 this.props.navigation.addListener('focus', () => { alert(2) });
阅读全文
posted @ 2022-12-12 15:06 龙卷风吹毁停车场
阅读(348)
评论(0)
推荐(0)
2022年12月9日
react-native 使用路由传递参数
摘要: navigation.navigate('home', { activeFilterTab: 'posted' }) //传递的对象{ activeFilterTab: 'posted' } 接收方: route.paeams.activeFilterTab 就行
阅读全文
posted @ 2022-12-09 18:06 龙卷风吹毁停车场
阅读(113)
评论(0)
推荐(0)
2022年12月2日
swiper 滚动时出现半屏,错乱
摘要: this.mySwiper = new Swiper('.swiper-container', { direction: 'vertical', initialSlide : 0 , //设定初始化时slide的索引。 mousewheel: true, //开启鼠标滚动切换 height: win
阅读全文
posted @ 2022-12-02 16:08 龙卷风吹毁停车场
阅读(434)
评论(0)
推荐(0)
2022年11月29日
js判断设备为手机还是pc
摘要: export function browserRedirect() { var sUserAgent = navigator.userAgent.toLowerCase(); var bIsIpad = sUserAgent.match(/ipad/i) == "ipad"; var bIsIpho
阅读全文
posted @ 2022-11-29 16:06 龙卷风吹毁停车场
阅读(34)
评论(0)
推荐(0)
2022年11月27日
css保持背景图片伸拉不变形
摘要: background: url(./img/Group3466734.png) no-repeat; background-size: cover; background-position: center;
阅读全文
posted @ 2022-11-27 20:58 龙卷风吹毁停车场
阅读(461)
评论(0)
推荐(0)
上一页
1
···
18
19
20
21
22
23
24
25
26
···
44
下一页
公告