2
我不能在''
如何在Ruby中使用'?
使用'
這得到語法錯誤:( 假設@ post.user.nickname是John
@message = @post.user.nickname + ''s post'
它必須是John's post
如何使用'
?
我不能在''
如何在Ruby中使用'?
使用'
這得到語法錯誤:( 假設@ post.user.nickname是John
@message = @post.user.nickname + ''s post'
它必須是John's post
如何使用'
?
嘗試
@message = @post.user.nickname + "'s post"
或
@message = @post.user.nickname + '\'s post'
非常感謝你。 – HUSTEN 2013-02-14 07:24:12