search
HomeWeb Front-endJS TutorialDetailed explanation of the use of computed and methods
Detailed explanation of the use of computed and methodsMay 08, 2018 pm 04:03 PM
computedmethodsDetailed explanation

This time I will bring you a detailed explanation of the use of computed and methods. What are the precautions for using computed and methods. The following is a practical case, let’s take a look.

computed and methods

The task of splicing and displaying data can also be completed using methods, but when the data on the page changes, the methods in methods will be Recall (causing unnecessary performance consumption), and the methods in methods will only be called when the data related to itself changes

A simple example

computed is only called during initialization

computed is only called during initialization

methods will be called when the data changes, even if the changed data has nothing to do with itself

testsource

nbsp;html>


  <meta>
  <title>computed的使用</title>
  <script></script>


  <p>
  </p>
  <script>
    var vm = new Vue({
      el: "#root",
      data: {
        name: "zhaozhao",
        age: 13,
        hobby: &#39;Python&#39;,
        nameAgeStyle: {
          fontSize: "20px",
          color: "#0c8ac5"
        }
      },
      template: `<p>
        <p v-bind:style="nameAgeStyle">computed方式渲染: {{nameAndAge}}
        <p v-bind:style="nameAgeStyle">methods 方式渲染: {{getNameAndAge()}}
        <br>
        <input type="text" v-model="hobby">
        <p>爱好: {{hobby}}
        <p>{{noUse()}}
        `,
      computed: {
        nameAndAge: {
          get(){
          console.log(&#39;调用computed&#39;);
          return `${this.name} ==> ${this.age}`;
          }
        }
      },
      methods: {
        getNameAndAge() {
          console.log(&#39;调用methods&#39;);
          return `${this.name} ==> ${this.age}`;
        },
        noUse(){
          console.log("=methods==nouse==");
        }
      }
    })
  </script>

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the use of iview custom verification keyword input box

How to debug Console

The above is the detailed content of Detailed explanation of the use of computed and methods. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Django框架中的缓存机制详解Django框架中的缓存机制详解Jun 18, 2023 pm 01:14 PM

在Web应用程序中,缓存通常是用来优化性能的重要手段。Django作为一款著名的Web框架,自然也提供了完善的缓存机制来帮助开发者进一步提高应用程序的性能。本文将对Django框架中的缓存机制进行详解,包括缓存的使用场景、建议的缓存策略、缓存的实现方式和使用方法等方面。希望对Django开发者或对缓存机制感兴趣的读者有所帮助。一、缓存的使用场景缓存的使用场景

Gin框架的模板渲染功能详解Gin框架的模板渲染功能详解Jun 22, 2023 pm 10:37 PM

Gin框架是目前非常流行的Go语言Web框架之一。作为一个轻量级的框架,Gin提供了丰富的功能和灵活的架构,使得它在Web开发领域中备受欢迎。其中一个特别重要的功能是模板渲染。在本文中,我们将介绍Gin框架的模板渲染功能,并深入了解它的实现原理。一、Gin框架的模板渲染功能Gin框架使用了多种模板渲染引擎来构建Web应用程序。目前,它支持以下几种模板引擎:

Python中的GUI库wxPython详解Python中的GUI库wxPython详解Jun 09, 2023 pm 10:00 PM

Python是一种简洁、易学、高效的编程语言。它广泛应用于各种领域,如数据科学、人工智能、游戏开发、网络编程等。虽然Python自带有一些GUI库,但他们的功能较为简单,无法满足各类复杂应用的需求。因此,Python中有许多GUI库可供选择,其中wxPython是其中一个,本文将详细介绍。wxPython简介wxPython是一个开源、跨平台的GUI库,它基

Vue报错:无法正确使用computed属性进行数据计算,如何解决?Vue报错:无法正确使用computed属性进行数据计算,如何解决?Aug 18, 2023 am 10:58 AM

Vue报错:无法正确使用computed属性进行数据计算,如何解决?在使用Vue进行开发时,computed属性是一个非常常用且强大的特性,它可以帮助我们对数据进行计算和处理。但有时候我们会遇到一些问题,例如无法正确使用computed属性进行数据计算,这时候我们就需要解决这个问题。下面是一个简单的例子来说明这个问题:&lt;template&gt;&

PHP Deprecated: Methods with the same name解决方法PHP Deprecated: Methods with the same name解决方法Jun 24, 2023 pm 05:32 PM

在使用PHP开发过程中,可能会遇到以下提示信息:PHPDeprecated:Methodswiththesamename,而这种提示信息往往会让程序开发者感到困惑。那么,这个问题是怎么引起的呢?如何解决呢?首先,让我们来解释一下这个提示信息的意思。Deprecated,即“已弃用”,指的是某个函数或方法已经过时,不再是PHP未来版本的更新内容,也

Vue报错:无法正确使用methods中的函数,如何解决?Vue报错:无法正确使用methods中的函数,如何解决?Aug 18, 2023 pm 06:30 PM

Vue报错:无法正确使用methods中的函数,如何解决?在使用Vue.js进行前端开发的过程中,我们经常会遇到无法正确使用methods中的函数的问题。这种情况经常出现在我们定义了一个函数,但在Vue组件中无法调用该函数的情况下。本文将介绍一些常见的错误原因及解决方法,并通过代码示例来说明。错误原因一:函数没有正确绑定到Vue实例上当我们在methods对

Vue3中的computed函数详解:方便计算属性的使用的应用Vue3中的computed函数详解:方便计算属性的使用的应用Jun 18, 2023 am 08:45 AM

Vue是一款非常流行的前端开发框架,它提供了非常方便实用的计算属性computed函数。在Vue3中,computed函数也得到了升级和改良,使得它的使用更加简便,效率更高。computed首先是一个函数,它会返回一个值,这个值可以直接在Vue的模板中使用。computed函数的特殊之处在于,它的返回值会根据所依赖的Vue实例的数据发生变化而动态改变,而且c

Vue组件通信:使用watch和computed进行数据监听Vue组件通信:使用watch和computed进行数据监听Jul 10, 2023 am 09:21 AM

Vue组件通信:使用watch和computed进行数据监听Vue.js是一款流行的JavaScript框架,它的核心思想是组件化。在一个Vue应用中,不同的组件之间需要进行数据的传递和通信。在这篇文章中,我们将介绍如何使用Vue的watch和computed来进行数据的监听和响应。watch在Vue中,watch是一个选项,它可以用来监听一个或多个属性的变

See all articles

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.