current location:Home > Technical Articles > Web Front-end > uni-app

  • Can uniapp be used without internet?
    Can uniapp be used without internet?
    With the popularity of mobile Internet and smartphones, more and more applications now require Internet access. However, sometimes it becomes a problem whether the application can work properly when the network is unstable or there is no network. In this case, many developers who use uniapp will ask: "Can uniapp be used without a network?" In fact, uniapp can run without a network. uniapp can be used offline, which we usually call "offline mode". Unlike other apps, uniapp
    uni-app 2377 2023-04-20 13:57:46
  • How to remove the native navigation bar in uniapp
    How to remove the native navigation bar in uniapp
    With the advent of the mobile Internet era, more and more companies choose to develop their own mini programs to meet the needs of users. In the development of small programs, uniapp has become a popular technical framework. However, uniapp comes with a native navigation bar by default, which is not very convenient in some scenarios. So, how to remove the native navigation bar in the uniapp application? This article will introduce relevant methods to you. Step 1: Set the page to full screen. In the process of removing the native navigation bar, the first step is to set the page to full screen. The specific implementation method is as follows:
    uni-app 4004 2023-04-20 13:59:24
  • How to solve the problem that the uniapp text field cannot wrap?
    How to solve the problem that the uniapp text field cannot wrap?
    In uniapp development, we often use scenarios for inputting and displaying text, such as text editors, chat interfaces, etc. Among them, the text field is a relatively common component. However, sometimes we encounter a problem that the text field cannot wrap. Why is this? Today I will give you a detailed introduction to the causes and solutions to this problem. Cause of the problem First, we need to make it clear: the text field in uniapp supports line breaks. So why do lines sometimes fail to break? In fact, there are many reasons for this problem
    uni-app 3236 2023-04-20 14:00:12
  • What should I do if uniapp Apple cannot play videos?
    What should I do if uniapp Apple cannot play videos?
    Recently, have you encountered problems playing videos using iOS apps developed by uniapp? If so, you need to read this article carefully. uniapp is an open source cross-platform application development framework based on the Vue.js framework. It can quickly develop applications that support multiple platforms, including iOS and Android. However, some app developers found that when embedding videos in their apps, the videos could not be played on iOS devices. So how to solve this problem? First, we need to understand the video of uniapp
    uni-app 3749 2023-04-20 14:00:36
  • How to delete local pictures in uniapp
    How to delete local pictures in uniapp
    With the continuous development of mobile applications, users have an increasing need to upload and save local images, and the uniapp framework, as a cross-platform development framework, is becoming more and more popular among developers. In uniapp, deleting local images is a common operation, but it may be a little confusing for some novices. This article will introduce how to delete local pictures in uniapp from two aspects to help developers better implement related functions. 1. Use the API provided by uniapp In the uniapp framework, uni.remo is provided
    uni-app 1620 2023-04-20 14:01:12
  • How to use vuex to implement login function in uniapp
    How to use vuex to implement login function in uniapp
    Vue.js is one of the most popular JavaScript frameworks in front-end development today. And uni-app is a framework for developing cross-platform applications using Vue.js. Vuex is the state management library of Vue.js and an important part of data state management in uni-app. In this article, we will introduce how uni-app uses Vuex to implement the login function, and can achieve more state management through this method. ## Prerequisite knowledge is to understand uni-app
    uni-app 1528 2023-04-20 14:02:08
  • Explore whether uni-app supports the react framework
    Explore whether uni-app supports the react framework
    Mobile app development has been an area of ​​constant growth and change over the past few years. There are many technologies and frameworks that make it easier for developers to build multi-platform applications. One of the popular frameworks is uni-app, which provides a vue.js-based development framework that can be used to build cross-platform applications. In this article, we will explore whether uni-app supports react framework. First, let’s briefly introduce uni-app. uni-app is a cross-platform development framework based on vue.js
    uni-app 2221 2023-04-20 14:02:53
  • Reasons and solutions for Uniapp static page not loading
    Reasons and solutions for Uniapp static page not loading
    With the popularity of mobile Internet, more and more enterprises have begun to transform into mobile applications, and using web technology to build applications has become a trend. As an emerging cross-platform solution, Uniapp can create multiple applications such as IOS, Android, and H5 with one code, and is widely welcomed by developers. However, when developing applications using Uniapp, many developers will encounter a problem - the static page is not loaded. This article will explore the causes and solutions to this problem from the following aspects: 1. What is Unia
    uni-app 1595 2023-04-20 14:03:30
  • How to set page parameters in uniapp
    How to set page parameters in uniapp
    With the rapid development of mobile application development, more and more developers are now using uniapp to quickly build cross-platform applications. However, when we create a page, sometimes we need to pass parameters to the page, and these parameters may be passed from other pages. So, how does uniapp set page parameters? This article will introduce in detail how to set page parameters in uniapp. 1. Pass parameters through URL We can pass parameters through URL, which is a very common way. In uniapp we can
    uni-app 2054 2023-04-20 14:03:40
  • How to render data after uniapp network request
    How to render data after uniapp network request
    Uniapp is a cross-platform development framework that can easily publish an application to multiple platforms, such as iOS and Android. In Uniapp, we can use Vue.js to write applications, and after network requests, we can use Vue's data binding function to dynamically render data. Network request is a very common operation, which can obtain data from the server. In Uniapp, we can use uni.request() to make network requests. This function accepts an object as parameter, which is
    uni-app 1431 2023-04-20 14:04:45
  • What should I do if uniapp template traversal cannot call methods?
    What should I do if uniapp template traversal cannot call methods?
    With the popularity of mobile Internet, software development is constantly developing, and various mobile applications are emerging in endlessly. In mobile development, uni-app can be said to be a popular development framework. Its characteristic is that one set of code can support multiple platforms at the same time, such as WeChat applet, H5, iOS, Android and other platforms. But in the process of using uni-app, we may encounter some problems. For example, when traversing an array in a template, what should you do if you need to call a method? Let us explore this issue together. 1. The background of the problem is in uni
    uni-app 1131 2023-04-20 14:05:21
  • A brief analysis of how UniApp jumps to other pages
    A brief analysis of how UniApp jumps to other pages
    UniApp is a development tool based on the Vue.js framework launched by DCloud. It can achieve the effect of writing once and running on multiple terminals. Developers can use UniApp to quickly build a cross-platform application. During the UniApp development process, it is often necessary to jump between pages. This article will introduce how to jump to other pages in UniApp. 1. Jump using the name of the page. In UniApp, you can jump by using the name of the page. Suppose we have a page called home, then
    uni-app 2941 2023-04-20 14:06:01
  • How to solve the problem that the uniapp page jumps with parameters but does not refresh
    How to solve the problem that the uniapp page jumps with parameters but does not refresh
    When using uniapp to develop projects, we often encounter scenarios where we need to pass parameters and jump to the next page. However, when encountering a situation where the page needs to be refreshed, some developers find that the page does not refresh as expected. The reason for this problem lies in the page jump mechanism of uniapp and the component update mechanism of the page. To address this problem, we need to know the following points: 1. When the page jumps, the new page will not be completely refreshed, and the life cycle function will only be re-executed. In uniapp, the page jump is through `uni.na
    uni-app 2485 2023-04-20 14:07:13
  • How to jump back to the previous page in uniapp and refresh the page
    How to jump back to the previous page in uniapp and refresh the page
    Uniapp is a cross-platform mobile application development framework based on the Vue.js framework. During the development process, we often encounter the need to jump to the previous page and refresh the page. This article will introduce how to implement this function. . 1. Prerequisite knowledge In the process of jumping back to the previous page and refreshing the page, two APIs need to be used: uni.navigateBack and uni.$emit. uni.navigateBack is an API encapsulated by uniapp to jump to the previous page. Calling this API can directly
    uni-app 12696 2023-04-20 14:07:49
  • How to add click style in Uniapp
    How to add click style in Uniapp
    Uniapp is a cross-platform mobile application development framework that can help developers quickly build applications for different platforms such as iOS, Android, and H5. In the development of mobile applications, UI effects often play a crucial role. How to add click styles in Uniapp is a very common question. Next, this article will introduce some methods to achieve click style effects to help developers easily achieve their needs. 1. Using CSS In Uniapp, you can add CSS styles to create click effects.
    uni-app 2858 2023-04-20 14:09:10

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28