FBJS的世界你好

发布于 2024-10-15 15:13:15 字数 819 浏览 3 评论 0原文

我正在尝试开始使用 FBJS,但我无法弄清楚这一点。 developer.facebook.com 上的文档似乎非常有限且难以整理,我不知道在哪里可以找到这方面的信息。

无论如何,我只是尝试执行 facebook 上显示的 hello world 应用程序,

<script> 
<!-- 
function random_int(lo, hi) { 
   return Math.floor((Math.random() * (hi - lo)) + lo); 
} 

function hello_world(obj) { 
   var r = random_int(0, 255), b = random_int(0, 255), g = random_int(0, 255); 
   var color = r+', '+g+', '+b;
   obj.setStyle('color', 'rgb('+color+')'); 
} 
//--> 
</script>
</head>
<body>
    <a href="#" onclick="hello_world(this); return false;">Hello World!</a>

但我不断收到错误消息,指出该对象没有 setStyle 方法。我认为 FBJS 应该是 Facebook 的一部分。我的画布网址中必须包含 fbjs 吗?

哦,这是网址:http://apps.facebook.com/thedivide/

I'm trying to start off using FBJS, and I can't figure this out. The documentation on developer.facebook.com seems so limited and hard to sort through I can't figure out where to find info on this.

Anyway, I'm just trying to do the hello world application shown on facebook

<script> 
<!-- 
function random_int(lo, hi) { 
   return Math.floor((Math.random() * (hi - lo)) + lo); 
} 

function hello_world(obj) { 
   var r = random_int(0, 255), b = random_int(0, 255), g = random_int(0, 255); 
   var color = r+', '+g+', '+b;
   obj.setStyle('color', 'rgb('+color+')'); 
} 
//--> 
</script>
</head>
<body>
    <a href="#" onclick="hello_world(this); return false;">Hello World!</a>

I keep getting the error saying that the object has no method setStyle. I thought FBJS was supposed to be part of facebook. Do I have to include fbjs in my canvas url?

Oh, and here's the url: http://apps.facebook.com/thedivide/

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

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

发布评论

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

评论(2

默嘫て 2024-10-22 15:13:15

您的画布应用程序处于 iframe 模式。这意味着您可以而且应该使用普通的 JavaScript。如果您想使用 FBJS,请将您的应用程序更改为 FBML 模式。您可以在Facebook 集成部分中的应用程序设置中执行此操作。请参阅随附的屏幕截图:

FBML 模式

Your canvas app is in iframe mode. This means you can and should use normal JavaScript. If you want to use FBJS change your application to FBML mode. You can do this from you application setting in the Facebook Integration section. See the attached screenshot:

FBML mode

七分※倦醒 2024-10-22 15:13:15

转到沙箱,它应该可以工作。

Go to the sandbox and it should work.

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