在ruby中有一个名为method_missing的概念,我试图在rails中实现相同的功能。
class GalleryController < ApplicationController
def gallery_home
end
def method_missing(m, *args)
render plain: "There is no method #{m}"
end
end
但仍会出现默认的rails错误页面。请指点我错的地方
编辑:当路线不匹配时,我正在尝试显示一条漂亮的自定义错误消息
我不想向用户展示
The page you were looking for does not exist
。