- 博客(11)
- 收藏
- 关注
原创 关于用swiper轮播配置,和轮播会产生白屏以及虚假页点击失效
1.swiper轮播配置:结构<swiper :options="swiperOptions"> <swiper-slide> </swiper-slide><swiper>参数配置:swiperOptions: { effect: 'coverflow', grabCursor: true, centeredSlides: false, loop: true, //
2021-10-28 20:01:25 3229
原创 localStorage和sessionStorage的区别,以及用途
localStorage:一直存在本地。sessionStorage:只要不关闭页面就一直存在本地,关闭整个活动页的时候会删除。用途:(1)在关闭活动页前保存tab键;共同点:(1)都是用xxxStorage.setItem(key,value),xxxStorage.getItem(key),xxxStorage.removeItem(key)。getItem得到的值的类型是字符串,需要数字可以-0转化成数字。...
2021-10-28 19:40:20 358
原创 关于css多行换行省略和第二行起缩进
css多行换行省略: padding-left: pxToRem(10); text-indent: pxToRem(-8); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
2021-10-25 13:26:33 1368
原创 当遇到Your branch and ‘origin/test-xxx‘ have diverged, and have 2 and 1 different commits each
错误提示:Your branch and ‘origin/test-xxx’ have diverged,and have 2 and 1 different commits each, respectively.(use “git pull” to merge the remote branch into yours)解决办法:git rebase origin/test-xxx这时候出现First, rewinding head to replay your work on top of i
2021-10-14 16:57:15 3149 3
原创 IOS手机:javascript-异常nativeEvalAndFetch:ReferenceError:找不到变量:cordova
可能存在IOS时间格式问题,写出2021.09.27和2021-09-27都是会报错而且相应功能没有效果。只有写2021/09/27才行,注意格式替换问题。
2021-09-27 18:03:19 363
原创 typescript五分钟入门
1.安装有两种主要的方式来获取TypeScript工具:(1)通过npm(Node.js包管理器),npm install -g typescript;(2)安装Visual Studio的TypeScript插件;现实找不到的时候,直接npm装一下就好,安装成功如下图:2.第一个ts文件ts文件以.ts为后缀,运行指令是 “tsc 文件名”,运行成功会生成一个js文件。类型注解:给形参定义类型,形参:类型。这时候如果实参跟形参的类型不一样,会报错,但是不影响生成js文件。...
2021-04-29 18:24:00 120
原创 scss/less中使用背景图片报错
报错:* …/src/assets/images/jjg/buy/btn_bg@2x.png in ./node_modules/css-loader?{“sourceMap”:true}!./node_modules/vue-loader/lib/style-compiler?{“vue”:true,“id”:“data-v-2cac46a1”,“scoped”:false,“hasInlineConfig”:false}!./node_modules/sass-loader/dist/cjs.js?{“
2021-03-23 19:45:11 1726 3
原创 使用css函数的时候警告
警告如下:Property name “bmodal” is not PascalCase产生原因:script标签里,name:‘bmodal’,第一个字母没有大写。解决办法:注意第一个字母一定要大写,name:‘Bmodal’。
2021-03-23 19:32:55 331
原创 nodejs学习踩坑之npm上传报错
遇到报错如下时:npm ERR! 403 403 Forbidden - PUT http://registry.npmjs.org/heziqing1229 - Forbiddennpm ERR! 403 In most cases, you or one of your dependencies are requestingnpm ERR! 403 a package version that is forbidden by your security policy.检查一下是不是npm的邮
2020-12-29 21:13:17 264
原创 使用post(fd)时,报错500 Internal server error (顺便回顾fd的知识点)
如果是fd中有文件,则一定要修改所有数据,否则会报错500 Internal server error。这是因为在接口中没有接收到对应的数据,特别是在编辑时遇到的图片也要再次上传。
2020-12-28 19:32:06 10868
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人