关于利用webpy的框架下,HTML无法加载CSS和背景图片的问题

-----尚未解决,望有大神不吝赐教-----

这是我的代码,

$def with(content)


	Gothons From Planet Percal #25
	
	


This is a paragraph for test.

$:content

This is another paragraph

本意是把这个作为网页的模板,把content加入到模板中,利用了一张图片想要作为背景

并且使用webpy的框架提供服务,下面是代码

import web

urls = (
	'/hello', 'Index'
)

app = web.application(urls, globals())					#web.application

#render = web.template.render('dgfp_31_hq/')				#search the directory 'templates', if there is a index, the following block can call it
render = web.template.render('templates/', base="layout")


class Index(object):				#to difine a class named "Index" with a method named "GET" maybe a routine under the python-web framework
	def GET(self):
		return render.hello_form()
		#return render.index()
		
	def POST(self):
		form = web.input(name = "Nobody", greet = "Hello")
		greeting = "%s %s"%(form.greet, form.name)
		print greeting
		return render.index(greeting = greeting)
		
if __name__ == "__main__":
	app.run()

这是webpy常用的两个GET和POST方法,用power shell运行上面的python程序,然后在浏览器中输入http://localhost:8080/hello,会得到一个表单页面

但问题就是,我想要使用的背景图片总是加载不了,power shell总是提示404找不到图片,试过把图片放到各种地方。我下载的一个html模板可以用浏览器直接完整打开,可是用webpy就会失去背景和渲染的特性……

这是为什么?

没人回复就过几天再回头看这个问题,自己加油!!!


你可能感兴趣的:(关于利用webpy的框架下,HTML无法加载CSS和背景图片的问题)