Vue的created的使用示例
Vue函数执行之后调用另一个函数在钩子函数created中我们需要执行定义好的select_book函数,来执行笔记本的查询,在页面信息展示之前将数据更新。// 查询笔记本select_book(){this.user_id = sessionStorage.user_idthis.$axios({url: this.$settings.HOST + "note/option_note_book/
·
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()
}
更多推荐
已为社区贡献1条内容
所有评论(0)