概述
函数
返回 Phoenix 配置的 JSON 编码库。
要自定义 JSON 库,请在您的 config/config.exs
中包含以下内容:
config :phoenix, :json_library, AlternativeJsonLibrary
返回控制何时初始化插件的 :plug_init_mode
。
建议在开发中将其设置为 :runtime
,以提高编译时间。在生产环境中必须设置为 :compile
(默认值)。
此选项作为 :init_mode
传递给 Plug.Builder.compile/3
。