我使用jsonerl來解碼我的應用程序中的請求正文。得到的元組看起來像這樣:Erlang:如何找到元組內的子元組
{
{<<"message">>,<<"Hello World">>},
{<<"users">>, [
{
{<<"first_name">>,<<"Jules">>},
{<<"last_name">>,<<"Winfield">>},
{<<"id">>,1}
},
{
{<<"first_name">>,<<"Vincent">>},
{<<"last_name">>,<<"Vega">>},
{<<"id">>,2}
}
]},
{<<"activities">>, [
{
{<<"type">>,<<"fetching bag">>},
{<<"user_id">>,1}
},
{
{<<"type">>,<<"discussing metrical system">>},
{<<"user_id">>,2}
}
]},
}
當然,這些子元組的順序是未知的。
我想將用戶列表交給一個函數來創建一個記錄列表。我怎樣才能訪問這些元組內的這個列表。
在此先感謝
這工作,非常感謝 – Stoecki