uniapp 微信小程序页面里的图片加载图片时,会有一个图片变形一闪而过的情况。
第一种
image{height:auto}
//全局设置图片自适应,完美解决
如果图片很多单独设置很麻烦的话,推荐这种,
第二种
给图片设置高度
如果只有一两个图片可以单独设置。
...
yekong
3年前 (2022-03-16)
喜欢
使用
<template>
<view class="employers">
<item title="头像">
<!--<uploadhead @getdata="ge...
yekong
3年前 (2022-03-12)
喜欢
触发事件
uni.$emit('update',{msg:'页面更新'})
监听事件
uni.$on('update',function(data){
console.log('监听到事件来自 update ,携带参数 msg 为:' + data.ms...
yekong
3年前 (2022-03-12)
喜欢
tabBar
"tabBar": {
"color": "#999999",
"selectedColor": "#a63030",
"borderStyle...
yekong
3年前 (2022-03-11)
喜欢
<template>
<div @click="chooseFile">
<slot></slot>
</div>
</template>
<script>
import...
yekong
3年前 (2022-03-11)
喜欢
uniapp 微信小程序 打开pdf文档
getpdf() {
var that = this;
wx.downloadFile({
url: configs.baseUrl + that.path,
success: function(res...
yekong
3年前 (2022-03-10)
喜欢
uniapp 使用lodash实现防抖效果
使用lodash前需要先安装lodash
html
<div class="submit" @click="gopay">
提交
</div>
js
// 防抖
...
yekong
3年前 (2022-03-09)
喜欢
uniapp开发使用前需要先安装lodash
html
<div class="submit" @click="gopay">
提交
</div>
js
import _ from 'lodash'
//...
yekong
3年前 (2022-03-09)
喜欢
安装依赖
npm i --save lodash
引用
import _ from 'lodash'
使用
_.floor(res, 2)
实现节流
实现防抖
文档
文档地址
...
yekong
3年前 (2022-03-09)
喜欢
<template>
<web-view src="https://www.wanjunshijie.com">
</web-view>
</template>
...
yekong
3年前 (2022-03-08)
喜欢