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

docs: uni-cloud-router

上级 705ea6e4
...@@ -115,13 +115,16 @@ module.exports = class HelloService extends Service { ...@@ -115,13 +115,16 @@ module.exports = class HelloService extends Service {
**5.在页面里调用云函数** **5.在页面里调用云函数**
在页面中 URL 化访问 hello(controller)下 sayHello: 在页面中通过callFunction访问 hello(controller)下 sayHello:
```js ```js
sayHello() { sayHello() {
uniCloud.callFunction({ uniCloud.callFunction({
name: 'hello/sayHello', name: 'hello-uni-cloud-router',
data: {} data: {
action: 'hello/sayHello',
data: {}
}
}) })
.then(res => { .then(res => {
this.title = res.data this.title = res.data
...@@ -369,7 +372,7 @@ module.exports = (options) => { ...@@ -369,7 +372,7 @@ module.exports = (options) => {
} }
``` ```
### 客户端使用云函数 ### 客户端使用云函数@use-in-client
#### 发送请求 #### 发送请求
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册