这是我的模型
class Tourisme < ActiveRecord::Base
has_friendly_id :title, :approximate_ascii => true
.
.
end
当标题包含 "?"
or"/"
并且我想生成一个 url 时:
admin_tourisme_path(tourisme)
我有一个错误
admin_tourisme_url failed to generate from {:action=>"show", :id=>#<Tourisme id: 14, title: "title with ?", description:.............
我怎样才能解决这个问题