鬼
  • 发布:2019-06-05 10:51
  • 更新:2021-05-09 22:33
  • 阅读:3822

uni-app打包后运行变慢是怎么回事?

分类:uni-app

在微信小程序和手机模拟器以及真机调试时,运行正常。
但是打包之后,点击执行自己手写的弹窗组建时,隔了五六秒才弹出来。

2019-06-05 10:51 负责人:无 分享
已邀请:
DCloud_uni-ad_HDX

DCloud_uni-ad_HDX

请提供测试Demo

  • (作者)

    下面

    2019-06-11 11:17

鬼

(作者)

popup组件:

<template>
<view>
<view v-show="show" :style="{ top: offsetTop + 'px' }" class="uni-mask" @click="hide" @touchmove.stop.prevent="moveHandle" />
<view v-show="show" :class="'uni-' + position + ' ' + 'uni-' + mode" class="uni-popup">
{{ msg }}
<slot />
<view v-if="position === 'middle' && mode === 'insert'" :class="{
'uni-close-bottom': buttonMode === 'bottom',
'uni-close-right': buttonMode === 'right'
}" class=" uni-icon uni-icon-close" @click="closeMask" />
</view>
</view>
</template>

<script>
export default {
name: 'UniPopup',
props: {
/**

  • 页面显示
    */
    show: {
    type: Boolean,
    default: false
    },
    /**
  • 对齐方式
    */
    position: {
    type: String,
    // top - 顶部, middle - 居中, bottom - 底部
    default: 'middle'
    },
    /**
  • 显示模式
    */
    mode: {
    type: String,
    default: 'insert'
    },
    /**
  • 额外信息
    */
    msg: {
    type: String,
    default: ''
    },
    /**
  • h5遮罩是否到顶
    */
    h5Top: {
    type: Boolean,
    default: false
    },
    buttonMode: {
    type: String,
    default: 'bottom'
    }
    },
    data() {
    return {
    offsetTop: 0
    }
    },
    watch: {
    h5Top(newVal) {
    if (newVal) {
    this.offsetTop = 44
    } else {
    this.offsetTop = 0
    }
    }
    },
    created() {
    let offsetTop = 0
    // #ifdef H5
    if (!this.h5Top) {
    offsetTop = 44
    } else {
    offsetTop = 0
    }
    // #endif
    this.offsetTop = offsetTop
    },
    methods: {
    hide() {
    if (this.mode === 'insert' && this.position === 'middle') return
    this.$emit('hidePopup')
    },
    closeMask() {
    if (this.mode === 'insert') {
    this.$emit('hidePopup')
    }
    },
    moveHandle() {}
    }
    }
    </script>
    <style>
    .uni-mask {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    }

    .uni-popup {
    position: fixed;
    z-index: 999;
    background-color: #ffffff;
    }

    .uni-popup-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .uni-popup-middle.uni-popup-insert {
    min-width: 380upx;
    min-height: 380upx;
    max-width: 100%;
    max-height: 80%;
    transform: translate(-50%, -65%);
    background: none;
    box-shadow: none;
    }

    .uni-popup-middle.uni-popup-fixed {
    border-radius: 10upx;
    padding: 30upx;
    }

    .uni-close-bottom,
    .uni-close-right {
    position: absolute;
    bottom: -180upx;
    text-align: center;
    border-radius: 50%;
    color: #f5f5f5;
    font-size: 60upx;
    font-weight: bold;
    opacity: 0.8;
    z-index: -1;
    }

    .uni-close-bottom {
    margin: auto;
    left: 0;
    right: 0;
    }

    .uni-close-right {
    right: -60upx;
    top: -80upx;
    }

    .uni-close-bottom:after {
    content: '';
    position: absolute;
    width: 0px;
    border: 1px #f5f5f5 solid;
    top: -200upx;
    bottom: 56upx;
    left: 50%;
    transform: translate(-50%, -0%);
    opacity: 0.8;
    }

    .uni-popup-top,
    .uni-popup-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .uni-popup-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 100upx;
    line-height: 100upx;
    text-align: center;
    }

    .uni-popup-bottom {
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 100upx;
    line-height: 100upx;
    text-align: center;
    }
    </style>

父组件调用:
<button type="button" @click="togglePopup('middle')">居中弹出 popup2</button>
<Popup :show="type === 'middle'" position="middle" mode="fixed" msg="123" @hidePopup="togglePopup('')" ></Popup>

就是官方文档中的Popup弹出层 在示例和测试时都正常 运行,但打包后,点击button后 popup 弹出特别慢。

@DCloud_UNI_HDX

鬼

(作者)

这里的原因是 我循环渲染组件255次,非常消耗资源。

DCloud_heavensoft

DCloud_heavensoft

估计你的app不是自定义组件模式。改模式

  • 1***@qq.com

    我Nvue 打开 组件弹框,组件弹框里面的定时器是30秒,打包IOS后打开弹窗 定时器卡顿弹出显示时 已经27秒,这只会打开应用第一次开弹窗时候 出现这情况。

    2020-07-04 18:14

4***@qq.com

4***@qq.com - BruceFeng518

请问你这个慢后面怎么处理,v-if 打包后都很慢

8***@qq.com

8***@qq.com

我是直接点不动,点击按钮没反应,我在模拟器上测试的

该问题目前已经被锁定, 无法添加新回复