I'm開發的離子2應用程序。當我做登錄,我可以存儲在SQLStorage
,LocalStorage
用戶憑證或將其轉換爲參數上NavParam
。離子2 - 存儲用戶憑證(本地存儲器VS導航PARAMS)
實施例:
onLogin(){
this.nav.setRoot(MainPageComponent,user);
}
VS
let storage = new Storage(SqlStorage);
storage.set('name', 'Max');
存儲空間超過傳遞作爲參數的主要優勢是什麼?