将 Silverlight 与 Ruby on Rails 结合使用?
有人可以指出我将 Silverlight 用户控件放在 Ruby on Rails 应用程序视图上的正确方向吗?
Could someone point me in the right direction of putting Silverlight User Controls on my Ruby on Rails application's views?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
呵呵,我认为您可以通过 Web 服务或 JS 与 Silverlight 中的 RoR 进行交互。
你的意思是“将 SL 用户控件放在 RoR 应用程序上”?你可以将
.xap
包含到html页面中,Silverlight能够在他所在的页面上使用JS。Huh, you can interact with RoR from Silverlight by web services or JS, i think.
What you mean 'putting SL user controls on RoR app'? You can include
.xap
into html page and Silverlight has the ability to use JS on a page where he is placed.您需要使用 IronRuby。
有关将 Silverlight 与 Iron Ruby 结合使用的文档位于:http://ironruby.net/browser/docs.html
You neet to use IronRuby.
Documentation about using Silverlight with Iron Ruby is here: http://ironruby.net/browser/docs.html
如果您想在页面上安装 Silverlight 应用程序(并且此页面是用 RoR 编写的),那么您可以简单地将
.xap
文件嵌入到页面中 - 您可以使用 对象标记 或 JavaScript(Silverlight.js 文件)If you would like to have Silverlight application on the page (and this page is written with RoR) then you can simply embedded
.xap
file into the page - you can do it using object tag or JavaScript (Silverlight.js file)这是一个快速教程 - 尚未尝试,但看起来不错。
http://techblogging.wordpress.com/2008/03/ 26/使用-silverlight-with-rubyonrails/
Here's a quick tutorial - haven't tried it yet, but seems good.
http://techblogging.wordpress.com/2008/03/26/using-silverlight-with-rubyonrails/