uniapp
前端J先生
三千弱水,只取一瓢饮,独爱一人,岗位千千万,惟爱前端!!!
展开
-
uniapp框架转微信小程序Cannot read property ‘forceUpdate‘ of undefined
这个报错提示appid未填写,所以去填写下appid就好了appid显示为空原创 2020-11-13 20:36:22 · 1399 阅读 · 0 评论 -
uniapp转微信小程序SystemError (appServiceSDKScriptError):Cannot read property ‘forceUpdate‘ of undefined
这个现在报的错为端口错误,所以我们要去检查端口第一种: 微信开发者工具=>设置=>安全设置=>开启服务端口第二种: 查看端口是否被占用原创 2020-11-13 20:30:42 · 1200 阅读 · 2 评论 -
uniapp转微信小程序Cannot read property ‘forceUpdate‘ of undefined
标题这个是因为appid微信公众平台: https://mp.weixin.qq.com/原创 2020-11-13 20:26:13 · 635 阅读 · 0 评论 -
uniapp去除滚动条的方法
第一种在app.vue的页面中设置全局css样式属性//第一种 scroll-view ::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; -webkit-appearance: none; background: transparent; } //第二种 ::-webkit-scrollbar原创 2020-11-06 13:52:19 · 10747 阅读 · 10 评论 -
小程序软键盘距离输入框无边距的问题
小程序软键盘跟输入框无距离问题通过添加一句代码解决原创 2020-11-04 10:12:31 · 417 阅读 · 0 评论 -
字体库显示不全
问题效果初步解决:原本是线上的字体库,切换到线下,未解决求大佬解答原创 2020-10-31 16:55:32 · 849 阅读 · 0 评论 -
超出堆栈大小报错
原因:查看代码是否递归,或者重定向,导致无限循环,导致内存超过堆栈原创 2020-10-30 19:13:26 · 642 阅读 · 0 评论 -
uniapp报错:plus is not defined
原因:不能使用浏览器进行调试,仅能用手机调试,app内置了一个支持html5+的内核,该内核支持plus对象.所以没有plus库,也不用需要引用库.可能是因为手机上的硬件跟电脑上的不一样,系统也不一样的原因。...原创 2020-10-22 14:28:39 · 20547 阅读 · 3 评论 -
change事件传参
cahnge事件传参如果是单独的传event不用传参<input type="text" value="" @change='cak'/>cak(){console.log(e)}**如果传有其他值 **<input type="text" value="" @change='cak(a,event)'/>cak(a){console.log(a)console.log(e)}...原创 2020-10-20 15:11:48 · 3501 阅读 · 1 评论 -
uniapp的nav导航栏下划线问题
未解决前:解决后:解决代码**:border-bottom='false'**<u-navbar :is-back="false" title="发布活动" :border-bottom='false'> </u-navbar>原创 2020-10-19 11:01:42 · 3312 阅读 · 3 评论 -
uniapp轮播图高度随变和左右滑动也获取高度
排版代码<view class="zonglistSwiperHeight" :style="{'height': swiperHeight +'px'}">//tab栏 <view> <u-tabs-swiper ref="uTabs" :list="list" :is-scroll="false" :current="current" @change="tabsChange" swiperWidth="750"></u-tabs-swiper&原创 2020-10-19 10:13:25 · 1021 阅读 · 0 评论 -
uniapp禁止手动滑动轮播
在swiper-item上添加@touchmove.stop则不会滑动 <swiper class="listSwiperHeight" ref="listHeight" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish"><swiper-item class="swiper-item" @change='newON()' @touchmove.stop>&l原创 2020-10-17 16:10:12 · 1132 阅读 · 0 评论 -
uniapp转微信小程序编译报错 Bad attr `data-event-opts` with message
Bad attr `data-event-opts` with message> 1 | <view class="activityContent data-v-74e8dc3a">> <view class="poster_img_outside data-v-74e8dc3a" data-event-opts="{{index==setdata?animdata:{}}}">> <image src="{{imgSrc}}" mode class=原创 2020-10-16 10:08:27 · 11864 阅读 · 2 评论 -
uniapp动态获取swiper的高或宽
在布局设置一下高度为动态的 <swiper class="tabs" @change="swipers" :current="actvic" :style="'height: ' {{ height}}'px;'"> </swiper> 声明height函数 data() { return { height: 500, } },原创 2020-10-15 11:21:05 · 1325 阅读 · 1 评论 -
uniapp转小程序黄色警告!!!
Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/founding/founding.wxss:288:3)This wxss file is ignored.黄色警告根源:解决方案:原创 2020-10-14 18:41:22 · 1838 阅读 · 0 评论 -
详细讲解uniapp转小程序分包教程!!!
1.分包小程序主包或分包不能超过2M,总包大小不能超过16M,分包还可以优化小程序的首次启动时间。分包前后对比分包前分包后小程序分包预加载我们在第一次加载分包中页面时,通常会提示“正在加载模块”,影响用户体验!!!uniapp分包配置对manifest.json文件进行配置一下,参考官网,在manifest配置以下节点,可以在App端启动分包。"app-plus": { "optimization": { "subPackages": true }, "r原创 2020-10-13 17:03:46 · 6102 阅读 · 0 评论