agile web development with rails 第6章的错误: post => true

问题的出现: 按照agile web development with rails书中的例子做到6.4节后,页面是被美化了,可是出现了一个问题,destroy功能突然失效了,因为对ror并不熟悉,于是经过一番排查才发现,只有把\depot\app\views\admin\list.rhtml文件中 <%= link_to 'Destroy', { :action => 'destroy', :id => product },:confirm => 'Are you sure?', %> 替换为 <%= link_to 'Destroy', { :action => 'destroy', :id => product },:confirm => 'Are you sure?', :post => true %> 才可以. 而这个小细节agile web development with rails 英文版和中文版都是错误的.

你可能感兴趣的:(Web,Rails)