简单的Fetch请求案例

  • 一个基本的fetch请求设置
fetch('https://api.github.com/users/Fire-zy/repos')
		.then(function(response){
		return response.json();
	})
		.then(function(myJson){
		console.log(myJson);
});

控制台得到返回的数据
简单的Fetch请求案例_第1张图片

  • 将得到的数据显示出来,我只取了name,其它内容没取


  
    
    Simple example
  
  
  	

    得到下面这样
    简单的Fetch请求案例_第2张图片
    最后添加css修饰一下,得到自己想要的样子
    简单的Fetch请求案例_第3张图片

    你可能感兴趣的:(vue)