灵药理解返回一个星号'*'
Elixir comprehension returning a star character '*'
我有一个在 p.followings
中返回的 Persona 模型列表,我想从这个模型列表中提取 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]
}
]
我只是想在此处获取 followed_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
时,它returns一个角色列表:
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 查询以从我关注的 Personas 中获取帖子。
这是怎么回事?我究竟做错了什么?有没有更好的方法来做我想做的事情?
正如我在评论中提到的以及在 this other post 中所讨论的,您收到的 '*'
实际上是您期望的列表:[42]
.
发生这种情况是因为 42 是 *
字符的代码点(您可以通过在 iex 会话中执行 ?*
来验证这一点)。在 Elixir 和 Erlang 中,当你有一个整数列表并且所有整数都是字符的有效代码点时,它会在你使用 IO.inspect
时打印字符列表,但它是一个列表,你可以像你一样使用它使用任何列表。
例如,如果您在 iex 提示符中键入 [104, 101, 108, 108, 111]
,您将返回 'hello'
,但单引号表示它是一个字符列表,您可以执行任何列表操作我喜欢它。
我有一个在 p.followings
中返回的 Persona 模型列表,我想从这个模型列表中提取 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]
}
]
我只是想在此处获取 followed_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
时,它returns一个角色列表:
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 查询以从我关注的 Personas 中获取帖子。
这是怎么回事?我究竟做错了什么?有没有更好的方法来做我想做的事情?
正如我在评论中提到的以及在 this other post 中所讨论的,您收到的 '*'
实际上是您期望的列表:[42]
.
发生这种情况是因为 42 是 *
字符的代码点(您可以通过在 iex 会话中执行 ?*
来验证这一点)。在 Elixir 和 Erlang 中,当你有一个整数列表并且所有整数都是字符的有效代码点时,它会在你使用 IO.inspect
时打印字符列表,但它是一个列表,你可以像你一样使用它使用任何列表。
例如,如果您在 iex 提示符中键入 [104, 101, 108, 108, 111]
,您将返回 'hello'
,但单引号表示它是一个字符列表,您可以执行任何列表操作我喜欢它。