Phoenix日志中出现奇怪错误:运行MyApp.Endpoint已终止

时间:2015-09-26 06:23:17

标签: web elixir phoenix-framework

我正在开发phoenix webapp中的跟踪错误。这是一个包含少量模型和页面的简单应用程序,其中所有模型创建表单都以多标签形式添加。

我在日志中遇到以下错误,但是在浏览器结束时工作正常。从日志中我也无法理解错误以及如何调试它。

[error] #PID<0.1603.0> running MyApp.Endpoint terminated
Server: localhost:4000 (http)
Request: GET /
** (exit) an exception was raised:
    ** (Plug.Conn.AlreadySentError) the response was already sent
        (plug) lib/plug/conn.ex:428: Plug.Conn.resp/3
        (plug) lib/plug/conn.ex:415: Plug.Conn.send_resp/3
        (my_app) web/controllers/personal_info_controller.ex:1: MyApp.PersonalInfoController.phoenix_controller_pipeline/2
        (my_app) lib/phoenix/router.ex:265: MyApp.Router.dispatch/2
        (my_app) web/router.ex:1: MyApp.Router.do_call/2
        (my_app) lib/my_app/endpoint.ex:1: MyApp.Endpoint.phoenix_pipeline/1
        (my_app) lib/plug/debugger.ex:90: MyApp.Endpoint."call (overridable 3)"/2
        (my_app) lib/phoenix/endpoint/render_errors.ex:34: MyApp.Endpoint.call/2
        (plug) lib/plug/adapters/cowboy/handler.ex:15: Plug.Adapters.Cowboy.Handler.upgrade/4
        (cowboy) src/cowboy_protocol.erl:442: :cowboy_protocol.execute/4

2 个答案:

答案 0 :(得分:19)

当您复制响应时会出现此错误 - 当您有一个插件会在某些错误上发送响应(例如,用户未登录),然后从控制器操作发送另一个响应时,通常会发生这种情况。

如果没有看到您的代码,很难告诉您问题出在哪里。发送回复后,您可以使用Plug.Conn.halt/1来防止此错误。

e.g。

conn
|> send_resp(404, "Post not found")
|> halt

答案 1 :(得分:10)

从控制器中删除plug :action为我修复了它。根据{{​​3}}

不再需要它

https://github.com/phoenixframework/phoenix/issues/888

建议使用此解决方案