从 proplist 中获取特定值

发布于 2024-12-11 14:13:26 字数 223 浏览 0 评论 0原文

我有一个像这样的 proplist:

{ok,{todo,"todo-21","Foo2"}}

如何在没有“ok”的情况下获得 the ?

我想在我的控制器中将其输出为 json:

{json, {todo,"todo-21","Foo2"}}

有一些漂亮的方法可以做到这一点吗?

I have a proplist like this:

{ok,{todo,"todo-21","Foo2"}}

How can I get the without the "ok"?

I would like to output this as json in my controller:

{json, {todo,"todo-21","Foo2"}}

Is there some nifty way to do this?

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

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

发布评论

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

评论(2

白昼 2024-12-18 14:13:26

很简单,我会说:

tojson({ok,Todo}) -> {json, Todo}.
tojson({ok,{todo,"todo-21","Foo2"}}).

Pretty simple, I would say:

tojson({ok,Todo}) -> {json, Todo}.
tojson({ok,{todo,"todo-21","Foo2"}}).
jJeQQOZ5 2024-12-18 14:13:26

这就是我所做的:

element(2, {ok, {todo, "todo-21", "Foo2"}}).

This is what I did:

element(2, {ok, {todo, "todo-21", "Foo2"}}).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文