提交 d2692e1c 编写于 作者: 雪洛's avatar 雪洛

Update cf-functions.md

上级 9250316a
...@@ -32,6 +32,10 @@ exports.main = async (event, context) => { ...@@ -32,6 +32,10 @@ exports.main = async (event, context) => {
云函数中如果要使用其他服务(比如mysql数据库、redis等),可以按照nodejs的写法即可。 云函数中如果要使用其他服务(比如mysql数据库、redis等),可以按照nodejs的写法即可。
**注意事项**
- 服务商为阿里云时,暂不可使用相对路径读取文件(比如`fs.readFileSync('./info.txt')`),可以使用绝对路径`fs.readFileSync(path.resolve(__dirname,'./info.txt'))`
### 访问数据库 ### 访问数据库
云函数中支持访问本服务空间下的数据库,调用方式详见[规范](uniCloud/cf-database.md) 云函数中支持访问本服务空间下的数据库,调用方式详见[规范](uniCloud/cf-database.md)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册