Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

image

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

"cloudfunctionRoot" : "./cloudfuncitons/",

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

image.png

还望指点,谢谢!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...