Table of Contents
Background
Solution
Listening to keyboard opening and closing events
Dynamic calculation of page height and input box position information
Summary
Home Web Front-end uni-app How to disable page push in uniapp

How to disable page push in uniapp

Apr 17, 2023 am 11:27 AM

With the development of mobile Internet, our mobile devices are used more and more widely, and various problems about the use of mobile devices also arise. When using mobile devices, sometimes we need to open the keyboard, such as typing, searching, etc. However, due to the differences between iOS and Android systems, some problems may occur when opening the keyboard. For example, the keyboard under the iOS system will push up the entire page, but under the Android system it will not. This article will introduce how to disable page push in uniapp.

Background

Under iOS, when the keyboard is opened, the entire page will be pushed up so that the user can see what is being entered. However, when there are many input boxes, the height pushed up on the page may affect other elements, causing layout confusion. Under the Android system, the keyboard will cover the input box, but the entire page will not be pushed up. Therefore, in uniapp development, we need to find a way to solve this problem so that the page will not be pushed up due to opening the keyboard.

Solution

In uniapp, we can monitor the opening and closing events of the keyboard and adjust the height of the page to achieve the effect of prohibiting page push up.

Listening to keyboard opening and closing events

In uniapp, we can listen to the keyboard through two methods: uni.onKeyboardShow and uni.onKeyboardHide Open and close events. Using these two methods, we can get information such as the height of the keyboard and the time when the event was triggered. Here, we need to use the uni.createSelectorQuery() method to get the size information of the page elements and operate the page when the keyboard is opened or closed.

export default {
    data() {
        return {
            // 页面高度
            pageHeight: '',
            // 输入框距离页面底部的距离
            marginTop: '',
            // 页面是否被上推
            isPushed: false
        }
    },
    mounted() {
        this.getPageHeight()
    },
    methods: {
        // 获取页面高度和输入框的位置信息
        getPageHeight() {
            uni.createSelectorQuery().select('.input-box').boundingClientRect((rect) => {
                // 记录输入框距离页面底部的距离
                this.marginTop = this.pageHeight - rect.bottom
            }).exec()
            uni.createSelectorQuery().select('.page').boundingClientRect((rect) => {
                // 记录页面高度
                this.pageHeight = rect.height
            }).exec()
        },
        // 监听键盘打开事件
        onKeyboardShow(e) {
            // 获取键盘高度
            let keyboardHeight = e.height
            // 页面上推
            this.pushPage(keyboardHeight)
        },
        // 监听键盘关闭事件
        onKeyboardHide() {
            // 页面还原
            this.restorePage()
        },
        // 页面上推
        pushPage(keyboardHeight) {
            if (!this.isPushed) {
                this.isPushed = true
                // 计算上推的高度
                let pushHeight = keyboardHeight - this.marginTop
                if (pushHeight > 0) {
                    uni.pageScrollTo({
                        scrollTop: pushHeight,
                        duration: 100
                    })
                }
            }
        },
        // 页面还原
        restorePage() {
            if (this.isPushed) {
                uni.pageScrollTo({
                    scrollTop: 0,
                    duration: 100
                })
                this.isPushed = false
            }
        }
    }
}
Copy after login

First, get the page height and the position information of the input box in the mounted() function. Then, in the onKeyboardShow() method, get the height of the keyboard, calculate the push-up distance and perform the page push-up operation. Finally, restore the original state of the page in the onKeyboardHide() method.

Dynamic calculation of page height and input box position information

In the above code, we use two uni.createSelectorQuery() methods to obtain the page height and The location information of the input box. However, this method needs to be executed in the mounted() function. If called before the page is loaded, the information of the page elements will not be correctly obtained. Therefore, we also need to use dynamic calculation methods to obtain information about page elements.

<style>
  .page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .input-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 20px 10px;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 1000;
  }
</style>
Copy after login

First, set the height of the page to 100vh in the style, so that the height of the page can be dynamically adjusted according to the screen height of the device. Then, set position: absolute in the style of the input box container, and set bottom: 0 so that the input box is always at the bottom of the page. This way, when the keyboard pops up, the input box will not be affected.

Summary

In this article, we introduced how to disable page push in uniapp. By listening to the opening and closing events of the keyboard and adjusting the height of the page when the event is triggered, we can achieve the effect of preventing the page from being pushed up due to opening the keyboard. When developing mobile applications, it is important to understand the characteristics of mobile devices and solutions to various problems, which will help develop better mobile applications.

The above is the detailed content of How to disable page push in uniapp. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do I handle local storage in uni-app? How do I handle local storage in uni-app? Mar 11, 2025 pm 07:12 PM

This article details uni-app's local storage APIs (uni.setStorageSync(), uni.getStorageSync(), and their async counterparts), emphasizing best practices like using descriptive keys, limiting data size, and handling JSON parsing. It stresses that lo

How do I manage state in uni-app using Vuex or Pinia? How do I manage state in uni-app using Vuex or Pinia? Mar 11, 2025 pm 07:08 PM

This article compares Vuex and Pinia for state management in uni-app. It details their features, implementation, and best practices, highlighting Pinia's simplicity versus Vuex's structure. The choice depends on project complexity, with Pinia suita

How do I make API requests and handle data in uni-app? How do I make API requests and handle data in uni-app? Mar 11, 2025 pm 07:09 PM

This article details making and securing API requests within uni-app using uni.request or Axios. It covers handling JSON responses, best security practices (HTTPS, authentication, input validation), troubleshooting failures (network issues, CORS, s

How do I use uni-app's geolocation APIs? How do I use uni-app's geolocation APIs? Mar 11, 2025 pm 07:14 PM

This article details uni-app's geolocation APIs, focusing on uni.getLocation(). It addresses common pitfalls like incorrect coordinate systems (gcj02 vs. wgs84) and permission issues. Improving location accuracy via averaging readings and handling

How do I use uni-app's social sharing APIs? How do I use uni-app's social sharing APIs? Mar 13, 2025 pm 06:30 PM

The article details how to integrate social sharing into uni-app projects using uni.share API, covering setup, configuration, and testing across platforms like WeChat and Weibo.

How do I use uni-app's easycom feature for automatic component registration? How do I use uni-app's easycom feature for automatic component registration? Mar 11, 2025 pm 07:11 PM

This article explains uni-app's easycom feature, automating component registration. It details configuration, including autoscan and custom component mapping, highlighting benefits like reduced boilerplate, improved speed, and enhanced readability.

How do I use preprocessors (Sass, Less) with uni-app? How do I use preprocessors (Sass, Less) with uni-app? Mar 18, 2025 pm 12:20 PM

Article discusses using Sass and Less preprocessors in uni-app, detailing setup, benefits, and dual usage. Main focus is on configuration and advantages.[159 characters]

How do I use uni-app's uni.request API for making HTTP requests? How do I use uni-app's uni.request API for making HTTP requests? Mar 11, 2025 pm 07:13 PM

This article details uni.request API in uni-app for making HTTP requests. It covers basic usage, advanced options (methods, headers, data types), robust error handling techniques (fail callbacks, status code checks), and integration with authenticat

See all articles