标签: erlang chicagoboss
我在rahm_test_controller.erl目录中创建了src文件,并添加了一个名为hello的操作。
rahm_test_controller.erl
src
hello
在/priv/rahm.routes中,我为主页添加了这一行:
/priv/rahm.routes
{"/",[{controller,"test"}, {action, "hello"}]}.
如果我使用./init-dev.sh启动服务器,它可以正常运行,但如果我使用./init.sh start以生产模式启动服务器,则无效。当我打开主页时,它显示“没有收到数据”。
./init-dev.sh
./init.sh start
这里有什么问题?