获取“拖延字符”尝试用SERDE_JSON分析字符串时的错误

发布于 2025-01-17 23:35:16 字数 307 浏览 0 评论 0原文

我需要在serde_json :: value中转换一个特定的字符串,但是在使用时会遇到尾随字符错误:

let new_str = "73723235c81ebbec0"
let json_value: serde_json::Value = serde_json::from_str(new_str).unwrap();

trailing characters at line 1 column 9

没有办法将这些字符串转换为serde_json :: value?

I need to convert a specific string in serde_json::Value, but getting a trailing character error while using:

let new_str = "73723235c81ebbec0"
let json_value: serde_json::Value = serde_json::from_str(new_str).unwrap();

Error:

trailing characters at line 1 column 9

Is there any way to convert these kinds of strings to serde_json::Value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房敞 2025-01-24 23:35:16

查看serde_json的存储库,从他们的测试用例中出现这是预期的行为。例如,请参见此

而不是调用from_str(),请使用to_value( )。这将为您提供String value枚举的变体。

let json_value: serde_json::Value = serde_json::to_value(&new_str).unwrap();

另外,如果您使用to_value(),则可以省略变量的类型标识符,我相信这可能更惯用。

let json_value = serde_json::to_value(&new_str).unwrap();

Looking at the repo for serde_json, it appears from their test cases this is expected behavior. For example, see this test case. Since your string starts with numeric values, it is attempting to parse as a number and then fails when it reaches the 'c' in position 9.

Rather than calling from_str(), use to_value(). This will give you a String variant of the Value enum.

let json_value: serde_json::Value = serde_json::to_value(&new_str).unwrap();

Also, if you use to_value(), you can omit the type identifier for your variable, which I believe is probably more idiomatic.

let json_value = serde_json::to_value(&new_str).unwrap();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文