从 proplist 中获取特定值
我有一个像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很简单,我会说:
Pretty simple, I would say:
这就是我所做的:
This is what I did: