我正在尝试从这两个函数返回字符串,并将其附加到我的对象参数上。 知道如何使它返回字符串吗?
const getEmail = () => {
ls.get('email').then((email) => {
if (email == null) {
return '';
}
return email;
})
}
const getPassword = () => {
ls.get('password').then((password) => {
if (password == null) {
return '';
}
return password;
})
}
const INITIAL_STATE = {
email: getEmail(),
password: getPassword(),
user: null,
error: '',
loading: false
};