link_to 'Destroy', article_path(article), method: :delete, data: { confirm: 'Are you sure?'}
上面的 link_to 函数让我手写的话,目前我是写不出来啊。 link_to 是函数名
'Destroy' 是第一个参数 article_path(article) 第二个参数 method: :delete 这个是什么鬼?是一个 hash 吗,hash 的 key 和 value 都是 symbol 类型? data: { confirm: 'Are you sure?'} 这个又是什么鬼?一个 hash,然后它的 value 值是一个 hash 吗? 我这样分析对吗?请大神指点。