为了账号安全,请及时绑定邮箱和手机立即绑定

如何为http get方法返回的变量赋值?

如何为http get方法返回的变量赋值?

收到一只叮咚 2021-05-20 14:10:54
如何为http get方法返回的变量赋值?我this.artists = null在构造函数中声明了一个变量。我想将$ http.get返回的值分配给this.artists variable。 Res.data返回我的对象-可以,但是我无法将其分配给变量this.artistsexport default class ArtistsService {  constructor($http) {    'ngInject';    this.$http = $http;    this.artists = null;  } getArtists() {return this.$http.get("https://api.spotify.com/v1/search?    q=Muse&type=track%2Cartist&market=US&limit=10&offset=5",     {headers: {        'Authorization': <Authorization>}, params    }).then(function mySuccess(res) {        this.artists = res.data;        console.log(this.artists);        }).catch( function myError(res) {        });    };}
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 169 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信