第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Django 顯示用視圖創(chuàng)建的 png

Django 顯示用視圖創(chuàng)建的 png

守著星空守著你 2023-08-08 16:03:04
我目前正在開發(fā)一個(gè)項(xiàng)目,我想在其中構(gòu)建一個(gè)可以輸入任何 URL 的網(wǎng)站。單擊按鈕,您應(yīng)該會(huì)獲得所請(qǐng)求網(wǎng)站的屏幕截圖。此外,還有另一個(gè)按鈕可以將此 png 調(diào)制為 RGB 圖像。幾天來,我遇到了一個(gè)問題,屏幕截圖已生成,但不再顯示在我的網(wǎng)站上,而仍然顯示舊圖像。這是我的 HTML 模板。<h1> CovertCast </h1><form action="" method="post">    {% csrf_token %}  <label>url:    <input type="url" name="deine-url" value="https://">  </label>    <button type="submit">Get Screenshot</button></form>{% load static %}<img src="/media/screenshot_image.png" class="bild"/><form action="/modulated.html" method="post">    {% csrf_token %}    <button type="submit">Modulate</button></form><img src="/media/modulated_image.png" alt="abc"/>我的函數(shù)視圖如下所示:def screenshot(request):    DRIVER = 'chromedriver.exe'    if request.method == 'POST' and 'deine-url' in request.POST:        url = request.POST.get('deine-url', '')        if url is not None and url != '':            options = webdriver.ChromeOptions()            options.add_argument('--ignore-certificate-errors')            options.add_argument('--ignore-ssl-errors')            driver = webdriver.Chrome(ChromeDriverManager().install())            driver.get(url)            img_dir = settings.MEDIA_ROOT            img_name = ''.join(['screenshot', '_image.png'])            path = os.path.join(img_dir, img_name)            if not os.path.exists(img_dir):                os.makedirs(img_dir)            driver.save_screenshot(path)            screenshott = img_name                        driver.quit()            return render(request, 'main.html')    else:                return render(request, 'main.html')def modulate(request):此外,我的應(yīng)該調(diào)制 RGB 圖像的視圖在 Django 中根本不起作用,即使它在我單獨(dú)測(cè)試時(shí)有效。
查看完整描述

1 回答

?
MM們

TA貢獻(xiàn)1886條經(jīng)驗(yàn) 獲得超2個(gè)贊

也許screenshott應(yīng)該是這樣screenshot?



查看完整回答
反對(duì) 回復(fù) 2023-08-08
  • 1 回答
  • 0 關(guān)注
  • 148 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)