小程序云函数访问第三方服务器错误解决
【摘要】
记录下云函数访问第三方服务器报错的解决办法
1.报以下错误大概率是因为got版本问题 我是直接npm install的,got版本是10.x
{"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"The \"original\" argument must be of...
记录下云函数访问第三方服务器报错的解决办法
1.报以下错误大概率是因为got版本问题
我是直接npm install的,got版本是10.x
{"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"The \"original\" argument must be of type function"}
需要使用低版本安装,博主指定了9.3.0版本后不再报此错误。
2.上述错误修复后报了别的错误。
{"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"stringify response to json failed: Converting circular structure to JSON"}
此时需要进行以下修改
- 确认云函数返回类型
-
let res = await got('http://xxx', {
-
method: 'get',
-
headers: {
-
'Content-Type': 'application/json',
-
},
-
})
-
return res.body
- 页面js云函数调用返回结果使用JSON.parse
-
wx.cloud
-
.callFunction({
-
name: 'xx',
-
data: {}
-
})
-
.then(res => {
-
let rs = JSON.parse(res.result)
-
})
文章来源: blog.csdn.net,作者:薛定喵君,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jsxg2009/article/details/115244460
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)