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

How Vue uses objects instead of if and switch

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

Share

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

This article mainly introduces how Vue uses objects instead of if and switch, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.

Use objects instead of if and switch

In many cases, we often encounter scenarios where circular judgment performs assignment operations. Generally, we use the conditional judgment of if and switch. If it meets the requirement, the assignment is performed, and if it does not match, proceed to the next judgment, such as:

Let name = 'lisi';let age = 18 else if if (name =' zhangsan') {age = 21;} else if (name = 'lisi') {age = 18;} else if (name =' wangwu') {age = 12;} / or switch (name) {case 'zhangsan': age = 21; break case' lisi': age = 18; break case 'wangwu': age = 12; break}

This way of writing is not only redundant, but also inefficient in code execution, so we can abbreviate it in the form of objects:

Let name = 'lisi';let obj = {zhangsan: 21, lisi: 18, wangwu: 12}; let age = obj [name] | | 18

The above technique is suitable for circular judgment of an assignment, and methods such as if or switch are needed if there is more processing logic after the judgment.

Thank you for reading this article carefully. I hope the article "Vue how to use objects instead of if and switch" shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you 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

  • How to realize the interchange between left and right menus in html

    This article will explain in detail how html can interchange left and right menus. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

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

    12
    Report