无法使用 mod_python 在网页中加载图像

发布于 2024-11-07 17:47:30 字数 573 浏览 6 评论 0原文

我必须使用 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 技术交流群。

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

发布评论

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

评论(1

水水月牙 2024-11-14 17:47:30

我猜你使用的是 apache2 mod python。必须有一个名为 def index 的函数,它至少接收一个请求参数。该函数的结果将传递给客户端。

所以在你的情况下是这样的:

def index (req):
       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>
    <table height="200" width="300"
     background="/var/www/cgi-bin/simplify.jpg" >
    <img width="640" height="480" src="simplify.jpg" />
    </table>
    </body></html>
    """
       return s

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:

def index (req):
       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>
    <table height="200" width="300"
     background="/var/www/cgi-bin/simplify.jpg" >
    <img width="640" height="480" src="simplify.jpg" />
    </table>
    </body></html>
    """
       return s
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文