云开发用户注意了, 关于云开发环境设置, 有一个坑
cloud.init({
env: {
database: "xxx",
storage: "xxx",
functions: "xxx",
}
});
这种写法现在无效了,
必须用
cloud.init({
env: "xxx"
});
否则访问到的不是你想要的环境
之前版本正常的, 更新了版本就坏了, 坑
cloud.init({
env: {
database: "xxx",
storage: "xxx",
functions: "xxx",
}
});
这种写法现在无效了,
必须用
cloud.init({
env: "xxx"
});
否则访问到的不是你想要的环境
之前版本正常的, 更新了版本就坏了, 坑