如何在指定模块名称时访问与配置相关的密钥

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

在查看phoenix中的配置文件时,如果我创建这样的配置:

config :myapp,
  http: 4000

我可以在我的代码中引用该键,如下所示:

Application.fetch_env!(:myapp, :http)

有时配置似乎特定于模块,如下面的MyApp.Endpoint。

这只是将配置分成几部分吗?如果我需要,如何在代码中引用如下所示的http端口?

config :myapp, MyApp.Endpoint,
  http: [port: 4000],
  debug_errors: true
elixir phoenix-framework
2个回答
4
投票

有时配置似乎特定于模块,如下面的MyApp.Endpoint。

这只是将配置分成几部分吗?

tldr;

是。使用配置文件,您可以创建如下内容:

[
  {:ecto_repos, [MyApp.Repo]},
  {.Repo,
   [
     username: "postgres",
     password: "postgres",
     database: "myapp_dev",
     hostname: "localhost",
     pool_size: 10
   ]},

  {:http, [port: 4000]},   <===**** HERE ****
  {:included_applications, []},

  {MyAppWeb.Endpoint,     <====**** HERE ****
   [
     url: [host: "localhost"],
     secret_key_base: "rchq5yMDPqqEBzFR+wIoqpc+kNquiyNDYUp/K8aF2Yj6POl/gjfj0H0rljE06LI5",
     render_errors: [view: MyAppWeb.ErrorView, accepts: ["html", "json"]],
     pubsub: [name: Rum.PubSub, adapter: Phoenix.PubSub.PG2],
     http: [port: 4000],
     debug_errors: true,
     code_reloader: true,
     check_origin: false,
     watchers: [
       node: [
         "node_modules/webpack/bin/webpack.js",
         "--mode",
         "development",
         "--watch-stdin",
         {:cd, "/Users/7stud/phoenix_apps/book/myapp/assets"}
       ]
     ],
     live_reload: [
       patterns: [~r/priv\/static\/.*(js|css|png|jpeg|jpg|gif|svg)$/,
        ~r/priv\/gettext\/.*(po)$/, ~r/lib\/myapp_web\/views\/.*(ex)$/,
        ~r/lib\/myapp_web\/templates\/.*(eex)$/]
     ]
   ]},

如果我需要,如何在代码中引用如下所示的http端口?

config :myapp, MyApp.Endpoint,
  http: [port: 4000],
  debug_errors: true

如果您查看该配置部分并删除换行符,您会得到:

config :myapp, MyApp.Endpoint, http: [port: 4000], debug_errors: true

而且,如果你添加一些括号,你会得到:

config(:myapp, MyApp.Endpoint, http: [port: 4000], debug_errors: true)

这是一个函数调用,其中第一个参数是:myapp,第二个参数是MyApp.Endpoint,然后这部分:

http: [port: 4000], debug_errors: true

是一个Keyword list。在elixir中,你可以定义这样的函数:

  def go(x, y, z) do
    IO.puts x
    IO.puts y
    IO.inspect z
  end

并称他们为:

My.go(10, 20, a: 1, b: 2)

这将输出:

10
20
[a: 1, b: 2]

这表明如果函数调用中的最后一个参数具有特定的语法,那么最后的参数将被收集到称为Keyword list的东西中,并作为一个参数传递给函数。所以,即使看起来你用四个参数调用My.go(),你实际上是用三个参数调用它。

结果,这个函数调用:

config(:myapp, MyApp.Endpoint, http: [port: 4000], debug_errors: true)

正在调用config/3函数定义。

为什么在配置文件中没有定义这样的函数时可以调用config/3函数?这一行:

use Mix.Config

config/3函数定义注入文件。这是elixir的一个问题:有很多神奇的东西会发生,这使得很难弄清楚函数定义的来源。

此时,您知道在配置文件中调用了config/3函数:

config :myapp, MyApp.Endpoint,
  http: [port: 4000],
  debug_errors: true

另外,配置文件顶部的use Mix.Config行提示可以在该模块中定义config/3,因此您可以仔细阅读Mix.Config docs。果然,文档中描述了config/3函数。还有一个文档中描述的config/2函数,在这里称为:

config :myapp,
  http: 4000

如果您阅读config/2的文档,似乎很容易理解事物是如何工作的:当您使用config/2设置键和值时,您可以通过调用以下方法检索与键关联的特定值:

Application.get_env(:myapp, key)  

例如,

Application.get_env(:myapp, :http)
#=> 4000

但是,当您使用config/3设置键和值时,您无法检索与键关联的特定值 - 而是最终检索键/值对的完整列表:

keyword_list = Application.get_env(:myapp, module)

config/3创建一个嵌套结构,其中模块是键,其值是由您在配置文件中指定的键/值对组成的关键字列表,例如:

  http: [port: 4000],
  debug_errors: true

另一种解决问题的方法是考虑嵌套地图:

%{
  myapp: %{
    http: 4000,  #<== config/2
    my_app_endpoint: %{http: [port: 4000, debug_errors: true]}  #<== config/3
  }

...和Application.get_env()只允许您指定两个键,例如:

Application.get_env(:myapp, :http)  #=> 4000

要么:

Application.get_env(:myapp, :my_app_endpoint)  #=> %{http: [port: 4000, debug_errors: true]}

检索keyword_list后:

keyword_list = Application.get_env(:myapp, module)

那么你必须使用你的elixir的一般知识从关键字列表中检索与特定键相关的值:

all = Application.get_all_env(:myapp)
IO.inspect all  #=> lots of stuff (which is not a keyword list)

keyword_list = Application.get_env(:myapp, MyApp.Endpoint)
IO.inspect keyword_list #=> a keyword list with lots of key/value pairs 
http = Keyword.get(keyword_list, :http)
IO.inspect http  #=> [port: 4000]
port = Keyword.get(http_keyword_list, :port)
IO.inspect port  #=>4000

3
投票

你从fetch_env!/2电话中得到的回报是keyword list。您可以像使用Map一样访问它:

Application.fetch_env!(:myapp, :http)[:port]

或者将其转换为Map,并按照这种方式执行:

Application.fetch_env!(:myapp, :http) |> Map.new |> Map.get(:port)

编辑 - 基于@ BrettBeatty的评论

您也可以使用Keyword.get/2函数:

:myapp |> Application.get_env(:http) |> Keyword.get(:port)
© www.soinside.com 2019 - 2024. All rights reserved.