Google 应用引擎帮助?

发布于 2024-12-18 13:30:10 字数 864 浏览 0 评论 0原文

感谢您花时间阅读我的问题。

我正在尝试使用 Google 应用引擎在我的网站上嵌入类似 this 的内容。为了实现这一点,我的理解是我必须上传一个 .js 文件。目前我的页面上有此代码:

<script src='/ytembed.js' type="text/javascript"></script>
<div id="youtubeDiv"></div>
<script type="text/javascript">ytEmbed.init({'block':'youtubeDiv','type':'search','q':'03728D7DF4BBDC66','results':'50','order':'highest_rating','width': 200, 'height': 200, 'layout': thumbnails});</script><br>

它仅返回空白页面。我认为这是因为我对 .js 文件的某种实现失败。

这是我目前的应用程序文件:

application: ********* 
version: 1
runtime: python
api_version: 1

handlers:
- url: /(.*\.(gif|png|jpg|ico|js|css))
  static_files: \1
  upload: (.*\.(gif|png|jpg|ico|js|css))

- url: .*
  script: main.py

- url: \1
  script: ytembed.js

Thanks for taking time to read my question.

I'm trying to embed something like this on my website using google app engine. To accomplish this my understanding is I have to upload a .js file. I currently have this code on my page:

<script src='/ytembed.js' type="text/javascript"></script>
<div id="youtubeDiv"></div>
<script type="text/javascript">ytEmbed.init({'block':'youtubeDiv','type':'search','q':'03728D7DF4BBDC66','results':'50','order':'highest_rating','width': 200, 'height': 200, 'layout': thumbnails});</script><br>

It only returns a blank page. I figured it's because i have some sort of failed implementation of the .js file.

This is my app file currently :

application: ********* 
version: 1
runtime: python
api_version: 1

handlers:
- url: /(.*\.(gif|png|jpg|ico|js|css))
  static_files: \1
  upload: (.*\.(gif|png|jpg|ico|js|css))

- url: .*
  script: main.py

- url: \1
  script: ytembed.js

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

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

发布评论

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

评论(1

长伴 2024-12-25 13:30:10

我建议您使用 static_dir 配置,如下所示:

application: ********* 
    version: 1
    runtime: python
    api_version: 1

    handlers:

    - url: /static/
      static_dir: static

    - url: .*
      script: main.py

并将 ytembed.js 放在根目录中的 static/js/ytembed.js 中您的应用程序,并指向 url 为 http://APPHOST/static/js/ytembed.js 的 js 文件。

I recommend you to use the static_dir configuration like this:

application: ********* 
    version: 1
    runtime: python
    api_version: 1

    handlers:

    - url: /static/
      static_dir: static

    - url: .*
      script: main.py

And put the ytembed.js in static/js/ytembed.js from the root directory of your application, and point to the js file with the url http://APPHOST/static/js/ytembed.js.

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