Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What happens if Android Mini Program uses the Arrow function?

2025-03-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "what happens when Android Mini Program uses the arrow function", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what happens when Android Mini Program uses the arrow function"!

If you use the arrow function directly in Mini Program, you will lose this. The code is as follows:

Page ({

OnLoad: () > {

Console.log (this)

/ / the current this does not point to the current page

}

})

In this case, it is very inconvenient to achieve many functions, such as accepting parameters and pulling information according to parameters.

My solution is simple, using the immediate execution function code as follows:

Page ({

OnLoad: function () {

Let that = this

; (async () = > {

Console.log (that)

/ / the scope of using that,that is still page object

/ / happily call any other operation and enjoy asynchronous synchronous writing

Await that.login ()

Await that.query ()

) ()

}

}) at this point, I believe you have a deeper understanding of "what happens when Android Mini Program uses the arrow function", so you might as well do it in practice! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report