我有以下网址
window.location.href = "/test/cat=6?sub_cat=20?mode=red+2010";
直到/test/cat=6
清楚但
如果我打印
params[:id] it display cat-6 thats fine because it is friendly id
如果我打印
params[:sub_cat] it displday 20?mode=red 2010 instead of 20 alone
如果我打印
params[:mode] it show nothing
我如何获得多个参数
答案 0 :(得分:1)
使用:
window.location.href = "/test/cat=6?sub_cat=20&mode=red+2010";
查询字符串以?开头?使用&
添加其他参数