所以我想做的是:
- 用户访问 www.website.com
- 有个按钮叫“玩游戏”
- Gosu 游戏(我已经写过)将启动窗口。
- 用户可以玩游戏。
所以也许它看起来像这样:
<button type = "submit" > PLAY GAME </button>
<iframe><%= MyGameFile.rb.execute %></iframe>
<!-- Iframe will contain the window of the Gosu app -->
我一直在阅读,我发现可能有一种方法可以通过使用 Jruby 来欺骗它运行。我还认为使用 Opal 将 Ruby 代码重新编译为 JS 并以某种方式运行它可能是一个好主意。
但为避免混淆,问题是:是否可以实施上述步骤?感谢您的任何回答。