如何将 SketchUp Ruby 中的字符串打印为 HTML

发布于 2025-01-09 05:04:40 字数 914 浏览 0 评论 0原文

下午好,

我这里有一段代码,您可以在 SketchUp 的 Ruby 控制台中运行它。当您这样做时,您将看到一个弹出窗口,其中打印字母“a”。但是在我的代码中,您可以看到我已将“a”标识为字符串“50.12”。

        dialog = UI::HtmlDialog.new(
    {
      :dialog_title => "Observation Information Plugin",
      :scrollable => true,
      :resizable => true,
      :width => 500,
      :height => 200,
      :left => 200,
      :top => 200,
      :min_width => 50,
      :min_height => 50,
      :max_width =>1000,
      :max_height => 500,
      :style => UI::HtmlDialog::STYLE_DIALOG
    })

a = 50.12
a = a.to_s

html = "
<!DOCTYPE html>
<html>
    <body>
        <script type = 'text/javascript'>
            document.write('<p>a</p>');
        </script>
    </body>
</html> 
"

dialog.set_html(html)
dialog.show

我可以做什么来修改代码的 HTML 部分以使脚本在屏幕上打印 50.12 而不是字母“a”?

感谢您的帮助!

Good afternoon,

I have a piece of code here which you can run in SketchUp's Ruby console. When you do, you will get a popup which prints the letter 'a'. However in my code, you can see I have identified 'a' as a string '50.12'.

        dialog = UI::HtmlDialog.new(
    {
      :dialog_title => "Observation Information Plugin",
      :scrollable => true,
      :resizable => true,
      :width => 500,
      :height => 200,
      :left => 200,
      :top => 200,
      :min_width => 50,
      :min_height => 50,
      :max_width =>1000,
      :max_height => 500,
      :style => UI::HtmlDialog::STYLE_DIALOG
    })

a = 50.12
a = a.to_s

html = "
<!DOCTYPE html>
<html>
    <body>
        <script type = 'text/javascript'>
            document.write('<p>a</p>');
        </script>
    </body>
</html> 
"

dialog.set_html(html)
dialog.show

What can I do to modify the HTML portion of my code to get the script to print 50.12 to the screen instead of the letter 'a'?

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铁憨憨 2025-01-16 05:04:40

您需要使用字符串插值。将 document.write('

a

'); 替换为 document.write('

#{a}

');

You need to use string interpolation. Replace document.write('<p>a</p>'); with document.write('<p>#{a}</p>');

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文