码迷,mamicode.com
首页 > 微信 > 详细

小程序云开发调用HTTP请求中got第三方库使用失败解决方法

时间:2020-02-05 11:55:18      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:catch   cat   server   use   http请求   nal   合数   nbsp   ISE   

小程序云开发调用HTTP请求中got第三方库使用失败解决方法
  1. 错误代码

    {"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"The \"original\" argument must be of type function"}
    
  2. 替换方案

    // 云函数入口文件
    const cloud = require('wx-server-sdk')
    const rq = require('request-promise');
    cloud.init()
    
    // 云函数入口函数
    exports.main = async(event, context) => {
      let key = '你的聚合数据APPID',
        page = 2,
        pagesize = 20,
        sort = 'asc',
        time = '1418745237',
        url = `http://v.juhe.cn/joke/content/list.php?key=${key}&page=${page}&pagesize=${pagesize}&sort=${sort}&time=${time}`;
      return await rq(url)
      .then(res => res)
      .catch(err => err)
    }
    

     

小程序云开发调用HTTP请求中got第三方库使用失败解决方法

标签:catch   cat   server   use   http请求   nal   合数   nbsp   ISE   

原文地址:https://www.cnblogs.com/korea/p/12262715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!