FBJS的世界你好
我正在尝试开始使用 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 吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的画布应用程序处于 iframe 模式。这意味着您可以而且应该使用普通的 JavaScript。如果您想使用 FBJS,请将您的应用程序更改为 FBML 模式。您可以在Facebook 集成部分中的应用程序设置中执行此操作。请参阅随附的屏幕截图:
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:
转到沙箱,它应该可以工作。
Go to the sandbox and it should work.