0

应该是一个简单的问题,但我是一个 Rails 新手,只是有点想把这个问题放在一起。在此语法中添加变量的格式是什么?伪代码:

 $var = '<html>' . $var2 . '</html>';

除了红宝石...

class PdfController < ApplicationController

  def index
    @html = %Q{
      <html>
      VARIABLE
      </html>
    }
  end
end
4

1 回答 1

3

您可以使用 Ruby 插值:

class PdfController < ApplicationController

  def index
    @html = %Q{
      <html>
      #{ VARIABLE }
      </html>
    }
  end
end
于 2013-08-24T18:45:00.803 回答