Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

uni-app开发微信小程序,无法上传云函数

正在学习uni-app写小程序,在过程中发现通过uni-app创建的小程序,云函数在开发工具中没有上传云函数的按钮,请问是为什么呢?

image

在manifest.json配置中,我已经配置了

"cloudfunctionRoot" : "./cloudfuncitons/",

由于是通过uni-app创建的项目,我的文件目录如下:

image.png

还望指点,谢谢!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

已解决,通过对比默认云开发文件,发现配置目录错误,应该是

"cloudfunctionRoot" : "./cloudfuncitons/" // 错误
"cloudfunctionRoot" : "cloudfuncitons/" // 正确

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...