扑 Json 格式异常
Flutter Json FormatException
在我的应用程序中,我试图从共享首选项中检索数据并将该值传递给提供者。我怎么会遇到异常
FormatException (FormatException: Unexpected character (at character 2)
{token: eyJh...
^
provider获取传值函数如下
Future<void> insertUsertolocal() async {
final storage = new LocalStorage();
final _user = await storage.getValue(Constants.USER); // retrieves data from key
User user = User.fromJson(jsonDecode(_user)); // receives FortmatException
print(user.email);
}
json 数据作为字符串存储在共享首选项中
_localStorage.setValue(Constants.USER, user.toString());
我该如何解决这个问题?
你应该使用 jsonEncode()
_localStorage.setValue.
在我的应用程序中,我试图从共享首选项中检索数据并将该值传递给提供者。我怎么会遇到异常
FormatException (FormatException: Unexpected character (at character 2)
{token: eyJh...
^
provider获取传值函数如下
Future<void> insertUsertolocal() async {
final storage = new LocalStorage();
final _user = await storage.getValue(Constants.USER); // retrieves data from key
User user = User.fromJson(jsonDecode(_user)); // receives FortmatException
print(user.email);
}
json 数据作为字符串存储在共享首选项中
_localStorage.setValue(Constants.USER, user.toString());
我该如何解决这个问题?
你应该使用 jsonEncode() _localStorage.setValue.