Elixir [42] 打印为“*”

问题描述 投票:0回答:1

我在

p.followings
中返回了一个角色模型列表,我想从该模型列表中提取
followed_id
字段到一个单独的列表中。

p.followings

returns...

[
  %Poaster.Personas.Following{
    __meta__: #Ecto.Schema.Metadata<:loaded, "followings">,
    followed: %Poaster.Personas.Persona{
      __meta__: #Ecto.Schema.Metadata<:loaded, "personas">,
      background_image_url: nil,
      bio: "ASDF",
      followings: #Ecto.Association.NotLoaded<association :followings is not loaded>,
      id: 42,
      inserted_at: ~N[2020-08-14 01:52:17],
      name: nil,
      profile_image_url: nil,
      updated_at: ~N[2020-08-14 16:19:56],
      user: #Ecto.Association.NotLoaded<association :user is not loaded>,
      user_id: 1,
      username: "test"
    },
    followed_id: 42,
    id: 1,
    inserted_at: ~N[2020-08-12 20:35:09],
    persona: #Ecto.Association.NotLoaded<association :persona is not loaded>,
    persona_id: 1,
    updated_at: ~N[2020-08-12 20:35:09]
  }
]

我只是想在此处获取 follow_id 的列表,以便我可以进行查询以获取我关注的角色的帖子列表。

我想拿回类似

[42]
的东西。

当我执行

Enum.map(ps.followings, fn follow -> follow.followed_id end)
时,这是我期望能够运行以获得此结果的,我只是回到控制台
'*'

当我尝试使用带有

into
选项的理解进入空列表时,这也是我得到的。

persona_ids = []
for p <- p.followings, into: persona_ids, do: p.followed_id
IO.inspect(persona_ids)
[]

但是,当我使用

p.followed
运行上述理解时,它会返回角色列表:

for p <- p.followings, into: persona_ids, do: p.followed   
[
  %Poaster.Personas.Persona{
    __meta__: #Ecto.Schema.Metadata<:loaded, "personas">,
    background_image_url: nil,
    bio: "ASDF",
    followings: #Ecto.Association.NotLoaded<association :followings is not loaded>,
    id: 42,
    inserted_at: ~N[2020-08-14 01:52:17],
    name: nil,
    profile_image_url: nil,
    updated_at: ~N[2020-08-14 16:19:56],
    user: #Ecto.Association.NotLoaded<association :user is not loaded>,
    user_id: 1,
    username: "test"
  }
]

我需要 ID 列表,而不是 Persona 模型列表,以便我可以进行适当的 Ecto 查询以获取我关注的 Persona 中的帖子。

这是怎么回事?我究竟做错了什么?有更好的方法来做我想做的事吗?

elixir list-comprehension phoenix-framework ecto
1个回答
3
投票

正如我在评论中提到的,以及在另一篇文章中讨论的,您收到的

'*'
实际上是您期望的列表:
[42]

发生这种情况是因为 42 是

*
字符的代码点(您可以通过在 iex 会话中执行
?*
来验证这一点)。在 Elixir 和 Erlang 中,当你有一个整数列表并且所有整数都是字符的有效代码点时,当你使用
IO.inspect
时它会打印字符列表,但它是一个列表,你可以像使用任何字符一样使用它列表。

例如,如果您在 iex 提示符中输入

[104, 101, 108, 108, 111]
,您将得到
'hello'
,但单引号表示它是一个字符列表,您可以对其执行任何您想要的列表操作。

© www.soinside.com 2019 - 2024. All rights reserved.