Vue函数执行之后调用另一个函数

在钩子函数created中我们需要执行定义好的select_book函数,来执行笔记本的查询,在页面信息展示之前将数据更新。

// 查询笔记本
        select_book(){
            this.user_id = sessionStorage.user_id
            this.$axios({
                url: this.$settings.HOST + "note/option_note_book/",
                method: "get",
                params: {
                    "user_id": this.user_id
                }
            }).then(res=>{
                this.note_book_name_list = res.data;
                this.tableData = res.data
            })
        },
created: function (){
        this.select_book()
    }
Logo

前往低代码交流专区

更多推荐