我正在尝试使用一个向我返回邮寄请求答案的函数。但是当我使用该函数时,我得到的值是不确定的。
var jsondata = {
'query':query,
'variables':variables_query
}
$http.post(url_graphql,jsondata).success(function(res)
{
console.log(res)
return(res)
})
}
async function exec_q(access_token, start_date,end_date,programa_gql)
{
var first_response = await querygraphql(
access_token,
start_date,
end_date,
programa_gql,1
)
print(first_response) <-- undefined
我希望得到请求的答案(即JSON),而不是未定义的
。