云函数日志中 同一个变量 log显示正常 返回null?
const fly = require( 'flyio' ) exports.main = (event, context) => { fly.get( 'https://cnodejs.org/api/v1/topics' , { page: 1, tab: '' , limit: 5, mdrender: false }) .then( function (response) { console.log(response.data) return response.data }) . catch ( function (error) { console.log(error.data) return error.data }) } |