应该是一个简单的问题,但我是一个 Rails 新手,只是有点想把这个问题放在一起。在此语法中添加变量的格式是什么?伪代码:
$var = '<html>' . $var2 . '</html>';
除了红宝石...
class PdfController < ApplicationController
def index
@html = %Q{
<html>
VARIABLE
</html>
}
end
end
应该是一个简单的问题,但我是一个 Rails 新手,只是有点想把这个问题放在一起。在此语法中添加变量的格式是什么?伪代码:
$var = '<html>' . $var2 . '</html>';
除了红宝石...
class PdfController < ApplicationController
def index
@html = %Q{
<html>
VARIABLE
</html>
}
end
end