gpt4 book ai didi

css - 为什么 App Engine 在本地开发中找不到 CSS?

转载 作者:太空宇宙 更新时间:2023-11-04 09:58:23 25 4
gpt4 key购买 nike

我在 osX 上玩 GAE,我似乎无法弄清楚如何将 Jquery 样式表链接到页面。当我链接到 CDN 时,css 工作正常,但我想修改 CSS。

我将本地 css 文件放在 style/中,并确保处理程序设置有 CSS 路径。

<link html="style/jquery.mobile.custom.structure.min.css" rel="stylesheet" type='text/css'>

这是 app.yaml:

application: workoutlog  
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:

- url: /style
static_dir: style

- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico

- url: .*
script: workoutlog.application

libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest

这是 HTML 文件的标题:

<head>  
<!-- Include meta tag to ensure proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- THIS CSS IS NOT SHOWING UP? -->
<link html="style/jquery.mobile.custom.structure.min.css" rel="stylesheet" type='text/css'>

<!-- Include the jQuery library -->
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>

<!-- Include the jQuery Mobile library -->
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>

我做错了什么?

最佳答案

 Change:   

<link html="style/jquery.mobile.custom.structure.min.css" rel="stylesheet" type='text/css'>

to:

<link href="style/jquery.mobile.custom.structure.min.css" rel="stylesheet" type='text/css'>

关于css - 为什么 App Engine 在本地开发中找不到 CSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38530817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com