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("返回S为: " + resp.S); //返回服务器时间(单位:毫秒) print("返回MS为: " + resp.MS); } );