then(res=>{ return res.json() })
也可以写成
then(res=>return res.json())
相当于
function (res) { return res.json() }