recherche

Maison  >  Questions et réponses  >  le corps du texte

vue ajax请求回来的数据没有渲染到页面

   //子组件列表
      <ForecastList :items='list'></ForecastList>
   
  //实例
       data: function () {
            return {
                data:{},
                Model:{},
                list:{}
            };
        },
        components:{
            ForecastList
        },
         mounted:function() {
          $('#slider').find('span').on('click',function(){
            $.ajax({
                  url: urlgeren,
                  data:{'gameName':type,"pn":1},
                  dataType: "json",
                  jsonp: "cb",
                  dataType: 'jsonp',
                success: function(data){
                    this.data=data
                    this.Model = data.Model
                    this.list = data.Model.list
                   }.bind(this)
               });
           }

在父组件中点击按钮,已经请求回来数据进行了绑定,但是组件中列表中的数据没有改变,这难道还要重新渲染一次子组件吗;

122.png

高洛峰高洛峰2932 Il y a quelques jours878

répondre à tous(1)je répondrai

  • 三叔

    三叔2016-11-04 10:32:14

    success函数里的this不等于组件事例吧

    répondre
    0
  • Annulerrépondre