1
jqin4 2018-07-23 17:39:57 +08:00
fetch("http://api.16820.com/newxiaoxi/fns/id/3 ")
.then((reponse)=>reponse.json()) //这里是一个 promise 对象 .then((json)=>console.log(json)) // extract json 我也是小白, 试一下。fetch 会 return 一个 promise 对象 |
2
suduo1987 2018-07-25 14:36:40 +08:00
```javascript
$.ajax({ url:'http://api.16820.com/newxiaoxi/fns/id/3', type:'get', success:function(data){ // to do ... } }); ``` |