我希望我的路线名称基于数据库中存储的json。 例如: 我数据库中的产品表包含json:
"tv screen 12:" {"title": "one", "content": "two"}
"toaster 3:" {"title": "two", "content": "two}
}
在我的rails应用程序中,我具有link_to或ng-href链接,它们当前重定向到该路线:
http://localhost:3000/product?generic_product_key=%D7%9E%
现在客户要求以下物品: 代替此路线,该路线应为
'localhost:3000/tv_screen_12'
在用户单击烤面包机链接的情况下,localhost:3000/toaster_3'
这些路由基于项目数据库中的json值。我的问题是1.如何做到这一点并使路线动态并基于json键。第二-我当前的ProductController可以处理这些不同的路线吗? (对我来说没有意义)