使用从插件分配到视图(elixir / phoenix)

时间:2017-04-29 18:26:14

标签: elixir phoenix-framework plug

我有我的api管道,我想在其中添加一个插件,它基本上在数据库中执行一些操作,并根据它执行的响应,然后在我的视图中使用。

我在将插件中的分配传递给视图时遇到了问题。

网络/ router.ex

pipeline :api do
  plug ApiV2.Plug.Authenticate, repo: Auth.Repo
  plug :accepts, ["json"]
end

web / controllers / auth.ex (只是分配)

defmodule ApiV2.Plug.Authenticate do
     @behaviour Plug
     import Plug.Conn
     import Phoenix.Controller

  def init(opts), do: opts

  def call(conn, _opts) do
    assign(conn, :current_user, 'user')
  end

end

网络/控制器/ address_controller.ex

defmodule ApiV2.AddressController do
  use ApiV2.Web, :controller

  alias ApiV2.Address

  def index(conn, params) do
    json conn, @current_user
  end
end

我已经到了尝试返回的地步:current_user(我想),但是,由于赋值错误,它只会返回

null

我错过了什么?

由于

1 个答案:

答案 0 :(得分:1)

使用assign设置的值可在conn.assigns地图中找到。 @current_user是一个模块属性,它返回nil,因为它未在此模块中设置。

这应该有效:

json conn, conn.assigns.current_user