We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
在BmobWindows对象中提供了一个方法,用于获取服务器时间。
BmobWindows bmobWindows = new BmobWindows(); bmobWindows.Timestamp( (resp, exception) => { if (exception != null) { print("请求失败, 失败原因为: " + exception.Message); return; } //返回服务器时间(单位:秒) print("返回时间戳为: " + resp.timestamp); print("返回格式化的日期为: " + resp.datetime); } );