C#

开发 文档

云函数的调用方法非常简单,如下为调用执行云端方法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. });

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

Copyright © 2017 Bmob, Maintained by the Bmob Support.

搜索

请输入您要搜索的内容

Keyboard Shortcuts

Keys Action
? Open this help
Previous page
Next page
s Search

[返回

旧版](https://docs.bmob.cn/data/Android/a_faststart/doc/index.html)