Parse-SDK-ts icon indicating copy to clipboard operation
Parse-SDK-ts copied to clipboard

从 0 开始重写 SDK

Open wujun4code opened this issue 8 years ago • 2 comments

本地缓存实现应该对使用者暴露接口

export interface IStorage {
    add(key: string, value: any): Promise<any>
    remove(key: string):  Promise<boolean>;
    get(key: string): Promise<string>;
}

用户可以使用我们的 SDK 集成在任何他想要的平台,VR 设备,手表,这个需求针对跨平台语言有一定的意义。

云引擎运行时都应该有 AVUser.create 接口

实现逻辑可以直接照搬 signUp ,但是不覆盖 currentUser,用户可以在云引擎写自己的 admin portal.

wujun4code avatar Jan 06 '17 03:01 wujun4code