无法使用 mod_python 在网页中加载图像
我必须使用 mod_python 制作一个网页,我必须在网页上加载图像这是我制作的代码
import cgi
import nltk
import time
def fill():
s = """\
<html><body bgcolor="777777" >
<form method="get" action="./show">
<p>Type a word: <input type="text" name="word">
<input type="submit" value="Submit"</p>
</form>
<img width="640" height="480" src="simplify.jpg" />
</table>
</body></html>
"""
return s
它必须加载图像但它没有这样做..有什么问题?我找不到任何好的教程,如果有人能给我推荐一个链接,那将会非常有帮助。
I have to make a webpage using mod_python, i have to load an image on the webpage this is the code that i have made
import cgi
import nltk
import time
def fill():
s = """\
<html><body bgcolor="777777" >
<form method="get" action="./show">
<p>Type a word: <input type="text" name="word">
<input type="submit" value="Submit"</p>
</form>
<img width="640" height="480" src="simplify.jpg" />
</table>
</body></html>
"""
return s
It has to load image but its not doing so.. what is the problem?? I couldn't get any good tutorials, if any one could suggest me a link it will be very helpful..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你使用的是 apache2 mod python。必须有一个名为 def index 的函数,它至少接收一个请求参数。该函数的结果将传递给客户端。
所以在你的情况下是这样的:
I guess you use apache2 mod python. There must be a function called def index which receives at least one parameter which is the request. The result of this function will be passed to the client.
So in your case something like: