收藏
回答

云函数报错,我使用的是 h5 跳转小程序

https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html

云函数代码

// 云函数入口文件
const cloud = require('wx-server-sdk')

cloud.init()

// 云函数入口函数
exports.main = async (event, context) => {
  const wxContext = cloud.getWXContext()

  switch (event.action) {
    case 'getUrlScheme': {
      return getUrlScheme(event.options)
    }
  }

  return 'action not found'
}

async function getUrlScheme(options) {
  return cloud.openapi.urlscheme.generate({
    jumpWxa: {
      path: '', // <!-- replace -->
      query: '',
    },
    // 如果想不过期则置为 false,并可以存到数据库
    isExpire: true,
    // 一分钟有效期
    expireTime: parseInt(Date.now() / 1000 + 60),
  })
}


这个是报错


回答关注问题邀请回答
收藏

1 个回答

  • 🇼 🇮 🇳 🇩
    🇼 🇮 🇳 🇩
    2021-04-07

    我知道了,是官网文档有问题...

    不知道啥时候能改一改....

    2021-04-07
    有用
    回复 1
    • 疯狂的小辣椒
      疯狂的小辣椒
      2021-04-07
      你好,具体是什么问题,麻烦详细说明下。
      2021-04-07
      回复
登录 后发表内容
问题标签