1

我已经在 Eventbrite 的 API 页面上玩过其他小部件,并让它们中的每一个都可以工作。我唯一遇到困难的是Event List 小部件

我在网上四处寻找包含更多信息或任何内容的教程,以查看我可能做错了什么,但没有成功。

当我复制并粘贴文本时,什么也没有出现。所以我尝试将 API 密钥和 ID 更改为我的,但没有任何显示。有谁知道它是否不再起作用,或者我是否需要向事件列表小部件描述中不太清楚的代码添加更多内容?

4

2 回答 2

0

I was having the same problem, and I noticed the first script tag in the example from EventBrite is missing "http:" in the src attribute. Once I added this, it worked.

<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

should instead be...

<script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

于 2013-04-01T18:26:38.857 回答
0

你用什么语言工作?

Eventbrite 的开源示例代码部分应该提供一些额外的示例: http ://eventbrite.github.com/#examples

于 2012-09-20T18:11:38.893 回答