1

每当我部署我的应用程序时,它都会正确部署,除了我在 main.css 中使用的背景图像没有出现。如果我将其更改为背景颜色,它可以工作,但背景图像无论出于何种原因都不起作用。当我使用 Browse 测试运行时,它可以工作,但是一旦我在 app.yaml 中更改了应用程序名称,Browse 就不起作用,但 Deployment 可以工作,但它不显示背景图像。如何让背景图像显示?

main.CSS 中的代码:

body {
  font-family: Comic Sans, Helvetica, sans-serif;
  background-image: url(../stylesheets/goku-wallpaper-2.jpg);
  background-repeat:repeat-x;
}

app.yaml 中的代码:

application: guestbooksky
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /stylesheets
  static_dir: stylesheets  

- url: /.*
  script: helloworld.app

libraries:
- name: jinja2
  version: latest
4

1 回答 1

0

probably:

background-image: url(/stylesheets/goku-wallpaper-2.jpg);

if the image file is in the path of:

/stylesheets/
于 2012-12-16T21:50:10.070 回答