Blazor SessionStorage - Itens 返回转义字符

Blazor SessionStorage - Itens returning with escape character

在我的 Blazor 应用程序中,我在会话存储中保存了一些信息(它按预期工作,我可以在我的浏览器上看到它们并且它们格式正确):

await _sessionStorage.SetItemAsync("userCredentials", loginUser.UserCredentials);

但是当尝试从组件访问它们时:

@inject Blazored.SessionStorage.ISessionStorageService sessionStorage;
...
@code{
...
    string myCrendentials = await sessionStorage.GetItemAsStringAsync("userCredentials");
...
}

结果会是"\"111\""

我会首先尝试使用一致的 API 调用

  • SetItemAsStringAsyncGetItemAsStringAsync

随着您现在调用的混合 - 一个涉及 JSON 序列化,而另一个不涉及。

编辑:额外说明

当您调用 SetItemAsync 并向其传递一个字符串时,它会将字符串序列化为 JSON 并将 JSON 存储在会话存储中。 JSON 将包含引号:"Test"

如果您使用 GetItemAsStringAsync 检索此会话数据,它将 return 您之前存储的 JSON 作为字符串:“Test”

当您调用 SetItemAsStringAsync 并向其传递一个字符串时,它只是将该字符串存储在会话存储中。此字符串将不包含引号:Test