美文网首页
3. methods方法

3. methods方法

作者: 叶小慈呀 | 来源:发表于2019-03-08 14:05 被阅读0次

methods属性是定义方法的主要区域,在此属性中,可以定义各种自定义函数名的方法以及参数

练习1:

<!DOCTYPE html>
<html>
   <head>
       <meta charset="utf-8">
       <title>Vue的方法练习</title>
       <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
   </head>
   <body>
       <div id="app">
           <h2>{{greeting()}}</h2>
           <h2>{{message}}</h2>
       </div>
       <script>
           var app = new Vue({
               el: '#app',
               data: {
                   message: 'Hello Vue!'
               },
               methods:{
                   greeting:function(){
                       return 'Good Morning!';
                   }
               }
           })
       </script>
   </body>
</html>

从练习中可以看出methods方法

methods:{
方法名:function()}

练习2:传参数

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Vue的方法练习</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    <body>
        <div id="app">
            <h2>{{greeting('Afternoon')}}</h2>
            <h2>{{message}}</h2>
        </div>
        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    message: 'Hello Vue!',
                    name: '软件1721'
                },
                methods: {
                    greeting: function(time) {
                        return 'Good ' + time + '!' + this.name;
                    }
                }
            })
        </script>
    </body>
</html>

练习中将Afternoon传给了参数time

采用v-on指令调用方法

分别点击“隐藏/显示”按钮可以切换内容的显示

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>v-on指令练习-隐藏和显示</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    <body>
        <div id="app">
            <button type="button" v-on:click="handleClick">隐藏/显示文字</button>
            <h2 v-if="show">{{message}}</h2>
        </div>
        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    message: 'Hello Vue!',
                    show: true
                },
                methods: {
                    handleClick: function() {
                        if (this.show) {
                            this.show = false;
                        } else {
                            this.show = true;
                        }
                    }
                }
            })
        </script>
    </body>
</html>

关注/取消关注练习

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>v-on指令练习——关注和取消关注</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
        <link rel="stylesheet" type="text/css" href="../css/font-awesome.min.css" />
        <style type="text/css">
            .link {
                cursor: pointer;
            }

            .followed {
                color: rgb(66, 192, 46);
            }

            .cancel-followed {
                color: rgb(150, 150, 150);
            }
        </style>
    </head>
    <body>
        <div id="app">
            <h2>{{user.name}}</h2>
            <span class="cancel-followed link" v-show="user.followed === true" @click="handleFollow">
                <i class="icon-ok"></i> 已关注
            </span>
            <span class="followed link" v-show="user.followed === false" @click="handleFollow">
                <i class="icon-plus"></i> 关注
            </span>
        </div>
        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    user: {
                        name: '简书作者',
                        followed: true
                    }
                },
                methods: {
                    handleFollow: function() {
                        if (this.user.followed === true) {
                            this.user.followed = false;
                        } else {
                            this.user.followed = true;
                        }
                    }
                }
            })
        </script>
    </body>
</html>

年龄的增减练习

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>v-on指令练习——年龄的变化</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    <body>
        <div id="app">
            <h2>{{age}}</h2>
            <!-- 绑定鼠标单击事件,调用无参方法可以不加括号 -->
            <button type="button" @click="add">长一岁</button>
            <!-- 绑定鼠标双击事件,并传递参数,调用有参方法必须加括号 -->
            <button type="button" @dblclick="substract(5)">减五岁</button>
        </div>
        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    age: 30
                },
                methods: {
                    add: function() {
                        this.age++;
                    },
                    substract: function(dec) {
                        this.age -= dec;
                    }
                }
            })
        </script>
    </body>
</html>

单击“长一岁”可以使得age的值加1,双击“减五岁”可以使得age的值减5

相关文章

  • 3. methods方法

    methods属性是定义方法的主要区域,在此属性中,可以定义各种自定义函数名的方法以及参数 练习1: 从练习中可以...

  • Vue中的methods方法

    在 methods 中定义方法 我们可以使用 methods 属性给 Vue 定义方法,methods 的基本语法...

  • vue中禁掉默认的键盘事件

    1.在methods中写下方法 2.在mounted中 3.在带有默认键盘事件的方法中调用

  • concrete methods 与instance metho

    concrete methods 是非抽象方法; 而instance methods是非静态方法。 所以:所有的s...

  • VUE-方法methods

    1.methods为VUE提供存放方法的地方 2.方法的简单应用 3.方法传值 4.方法中引用data中的属性 5...

  • Vue+Element UI实现复制内容

    安装依赖包: main.js中引入 3.页面中使用: 4.Methods下的两个方法:

  • Methods - 方法

    来源于 Ry’s Objective-C Tutorial - RyPress 一个学习Objective-C基础...

  • 方法(Methods)

    方法概念: 函数在类,结构体,枚举中就叫方法。 实例方法举例: let counter = Counter()//...

  • 方法(Methods)

    翻译:pp-prog 校对:zqp 本页包含内容: 实例方法(Instance Methods 类型方法(Typ...

  • Methods (方法)

    Methodsare functions that are associated with a particula...

网友评论

      本文标题:3. methods方法

      本文链接:https://www.haomeiwen.com/subject/umrrpqtx.html