开发者可以通过 HTTP 调用云函数,并且将云函数的返回值变为 HTTP 响应体。
# 快速开始
# 准备工作
# 初始化目录
$ mkdir my-cloudbase-service && cd my-cloudbase-service
$ mkdir functions && mkdir functions/hello
$ touch cloudbaserc.js functions/hello/index.js
然后我们获得了一个如下结构的目录:
.
├── cloudbaserc.js
└── functions
└── hello
└── index.js
cloudbaserc.js
内,填入环境 ID:
// cloudbaserc.js
module.exports = {
envId: 'your-env-id'
}
functions/hello/index.js
内,我们写入一个简单的 Hello World:
// functions/hello/index.js
exports.main = function() {
return 'Hello World!'
}
# 发布云函数
执行以下命令:
$ cloudbase functions:deploy hello
等待之后,云函数便发布成功:
$ cloudbase functions:deploy hello
? 未找到函数发布配置,使用默认配置? Yes
✔ [hello] 函数部署成功!
# 为云函数创建云接入路由
执行以下命令创建一条云接入路由,路径为 /hello
,指向的云函数为 hello
:
$ cloudbase service:create -p /hello -f hello
# 通过 HTTP 访问云函数
随后便可以通过 https://${env}.service.tcloudbase.com/hello
直接访问函数,其中 ${env}
是环境 ID
$ curl https://${env}.service.tcloudbase.com/hello
hello world!
也可以直接在浏览器内打开 https://${env}.service.tcloudbase.com/hello
# 云函数的入参
使用云接入调用云函数时,HTTP 请求会被转化为特殊的结构体,称之为集成请求,结构如下:
{
path: 'HTTP请求路径,如 /hello',
httpMethod: 'HTTP请求方法,如 GET',
headers: {HTTP请求头},
queryStringParameters: {HTTP请求的Query,键值对形式},
requestContext: {云开发相关信息},
body: 'HTTP请求体',
isBase64Encoded: 'true or false,表示body是否为Base64编码'
}
下面是一个示例:
{
path: '/',
httpMethod: 'GET',
headers: {
'host': 'env-id.service.tcloudbase.com',
'connection': 'close',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'accept-encoding': 'gzip, deflate, br',
'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8'
},
requestContext: {
requestId: 'cdbb96328072184d19d3fcd243e8cc4d',
envId: 'env-id',
appId: 123456789,
uin: 123456789
},
isBase64Encoded: false,
body: ''
}
# 云函数的返回值
云函数可以返回 string
、object
、number
等类型的数据,或者返回集成响应,随后云接入会将返回值转化为正常的 HTTP 响应。
# 返回字符串或数字
云函数返回字符串,那么
module.exports.main = function() {
return 'hello gateway'
}
最终 HTTP 响应为:
HTTP/1.1 200 OK
date: Mon, 16 Dec 2019 08:35:31 GMT
content-type: text/plain; charset=utf-8
content-length: 13
hello gateway
# 返回 Object
返回的 Object
会被转换为JSON,同时 HTTP 响应的 content-type
会被设置为 application/json
):
module.exports.main = function() {
return {
foo: 'bar'
}
}
最终 HTTP 响应为:
HTTP/1.1 200 OK
date: Mon, 16 Dec 2019 08:35:31 GMT
content-type: application/json; charset=utf-8
content-length: 13
{"foo":"bar"}
# 返回集成响应
云函数可以返回如下这样特殊结构的集成响应,来自由地控制响应体:
{
"isBase64Encoded": true|false,
"statusCode": httpStatusCode,
"headers": { "headerName": "headerValue", ... },
"body": "..."
}
# 使用集成响应返回 HTML
将 content-type
设置为 text/html
,即可在 body
中返回 HTML,会被浏览器自动解析:
module.exports.main = function() {
return {
statusCode: 200,
headers: {
'content-type': 'text/html'
},
body: '<h1>Hello</h1>'
}
}
最终 HTTP 响应为:
HTTP/1.1 200 OK
date: Mon, 16 Dec 2019 08:35:31 GMT
content-type: text/html; charset=utf-8
content-length: 14
<h1>Hello</h1>
# 使用集成响应返回 JS 文件
将 content-type
设置为 application/javascript
,即可在 body
中返回 JavaScript 文件:
module.exports.main = function() {
return {
statusCode: 200,
headers: {
'content-type': 'application/javascript'
},
body: 'console.log("Hello!")'
}
}
最终 HTTP 响应为:
HTTP/1.1 200 OK
date: Mon, 16 Dec 2019 08:35:31 GMT
content-type: application/javascript; charset=utf-8
content-length: 21
console.log("Hello!")
# 使用集成响应返回二进制文件
如果返回体是诸如图片、音视频这样的二进制文件,那么可以将 isBase64Encoded
设置为 true
,并且将二进制文件内容转为 Base64 编码的字符串,例如:
module.exports.main = function() {
return {
isBase64Encoded: true,
statusCode: 200,
headers: {
'content-type': 'image/png'
},
body: 'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAY...'
}
}
最终 HTTP 响应为一张 PNG 图片:
HTTP/1.1 200 OK
date: Mon, 16 Dec 2019 08:35:31 GMT
content-type: image/png
content-length: 9897
<binary payload...>