0

我有这个代码

  %button.aristo-default.accept{:href => "#", :onclick => "$.post('/sessions/accept_invite', { user_id: 1, friend_id: 1 }) " }

想将@friend.id 放在 1 中,这样我就可以使用变量而不是硬编码的 1,该怎么做?一定很简单,但我尝试了几种方法都无济于事。谢谢

4

1 回答 1

1

您可以使用#{@friend.id}来获取实际值:

%button.aristo-default.accept{:href => "#", :onclick => "$.post('/sessions/accept_invite', { user_id: 1, friend_id: #{@friend.id} }) " }
于 2012-06-26T08:50:19.140 回答