• 开发 文档

    开发 文档

    云函数的调用方法非常简单,如下为调用执行云端方法test的实现代码:

    1. Bmob.Endpoint<Hashtable>("test", (resp, exception) =>
    2. {
    3. if (exception != null)
    4. {
    5. print("调用失败, 失败原因为: " + exception.Message);
    6. return;
    7. }
    8. print("返回对象为: " + resp);
    9. });

    调用时传递参数:

    1. IDictionary<String, Object> parameters new IDictionary<String, Object>{{"name","jay"}};
    2. Bmob.Endpoint<Hashtable>("test", parameters, (resp, exception) =>
    3. {
    4. if (exception != null)
    5. {
    6. print("调用失败, 失败原因为: " + exception.Message);
    7. return;
    8. }
    9. print("返回对象为: " + resp);
    10. });

    相关云函数的编写方式,请参考云函数开发文档。