gpt4 book ai didi

html -

如何显示一个变量

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:54 28 4
gpt4 key购买 nike

有什么方法可以在“p”标签中加载变量吗?

在我的 test.html.erb 中:

<p>"#{@variable}"</p>

在我的 test_controller.rb 中

@variable = "Testing"

但是,在 html 中,它显示“#{@variable}”。

我该如何解决?

最佳答案

你需要打印你的代码然后插入它,试试:

<p><%= "#{@variable}" %></p>

或者只是 <p><%= @variable %></p> ,这取决于你想做什么,然后你可以插入你的变量。

<p>"#{@variable}"</p>你只是打印纯 html,Ruby 没有解释任何内容。

关于html - <p> 如何显示一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45311894/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com