invoke

描述

调用云函数。

  1. basement.function.invoke(handlerName: string, options?: object): Promise<Result>

请求参数


字段

描述

必填

handlerName

String

云函数 handler 名称。



options

Object

请求云函数 handler 时的传参。


返回参数


字段

描述

success

Boolean

请求是否成功。

result

Object

云函数返回值。

示例

  1. basement.function.invoke('dataAnalytics', {
  2. range: 30,
  3. }).then((res) => {
  4. console.log(res);
  5. }).catch(console.error);

原文: https://docs.alipay.com/mini/cloud-service/fnx61p