美文网首页工作生活
vue如何缓存第一次接口请求的数据?

vue如何缓存第一次接口请求的数据?

作者: 我性本傲 | 来源:发表于2019-07-04 11:42 被阅读0次

    全局定义 const cache = {}

    getData(categoryId){
    if(cache[categoryId]){
    this.props.vedioObj.categories = cache[categoryId]
    console.log(this.props.vedioObj.categories)
    }else{
    //请求数据.....
    回调中操作:
    cache[categoryId] = this.props.vedioObj.categories
    console.log(cache[categoryId]
    }
    }
    弊端:页面操作也不请求接口了,没法传值了。

    相关文章

      网友评论

        本文标题:vue如何缓存第一次接口请求的数据?

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