PENGZhaoqing / CourseSelect

校园选课系统样本 (a template for course selection system by Ruby on Rails)
https://courseselect.herokuapp.com/
MIT License
105 stars 205 forks source link

导出课程列表的时候提示路由错误 #67

Closed tttrzpt closed 7 years ago

tttrzpt commented 7 years ago

<td><%= link_to "导出",course_path(:format => :xls), class: 'btn btn-xs btn-danger', :data => {confirm: '确定要导出课程列表?'} %></td> 我用的to_xls插件,路由里面export也设置成了post不知道怎么改了。。。

PENGZhaoqing commented 7 years ago

你可以用一个新的路由为 export: get, 用rake routes查看你新路由的调用方法,假设为course_export_path

那么course_export_path(:format => :xls)能够正确提交到Course类的export方法里,在这个方法里做to_xls的相关操作

tttrzpt commented 7 years ago

谢谢助教,搞定了。。。。 t8uaau_9assy0s9 hq 880