用微信运托管部署python代码(官方文档的示例代码)在微信小程序中调用 返回值是404 not found
async onLoad() {
// 初始化 Cloud 实例
// 容器调用必填环境id,不能为空
var c1 = new wx.cloud.Cloud({
resourceEnv: '********'
})
await c1.init()
// 返回值同 wx.request
const res = await c1.callContainer({
path: '/container-helloword', // 填入业务自定义路径
header: {
'X-WX-SERVICE': 'helloword', // 填入服务名称
},
// 其余参数同 wx.request
method: 'GET',
})
console.log(res)
}
path: '/container-helloword'
这个path应该是route的路径, 如果是官方的示例代码, 应该是 /