ปลั๊กอินสำหรับไพธอนไม่สามารถคลายแฟ้มค่าของที่ถูกซ่อนข้อมูล

0

คำถาม

ฉันกำลังพยายามคลายแฟ้มค่าของที่ถูกซ่อนข้อมูลป้ายกำกับ ถึงแม้ว่าห้องธาตุอยู่ใน HTML ฉันไม่สามารถหามันเจอกับ bs4.

นี่คือข้อผิดพลาดข้อความฉันได้:

AttributeError: 'NoneType' object has no attribute 'find'

นี่เป็น html ในหน้าเว็บที่ถูกเขียนด้วย:

<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
    
    <more html>
                                
    <div>
    <input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
    </div></form>

และนี่คือของปัจจุบันรหัส:

csrf = soup.find("form", {"id": "exampleid"})
csrf = csrf.find('input', {'name': 'csrf'}).get("value")
print(csrf)

ฉันจะซาบซึ้งมากเกี่ยวกับเรื่องช่วยเท่าที่มันเป็นจริงรบกวนจิตใจผม ขอบคุณล่วงหน้า!

beautifulsoup forms hidden-field python
2021-11-23 17:09:09
1

คำตอบที่ดีที่สุด

1

ของส่วนที่เลือกเป็นยังทำงานอยู่ว่ามันมีอีกปัญหาบางทีคุณอาจจะไม่ได้ html คุณคาดหวังไว้

เป็น alternativ เพื่อเลือกและรับค่าของมันซ่อนอ <input> คุณสามารถใช้ตาม css selector:

soup.select_one('#exampleid input[name*="csrf"]')['value']

ตัวอย่างเช่น

from bs4 import BeautifulSoup

html = '''
<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
<div>
<input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
</div></form>'''

soup = BeautifulSoup(html, "lxml")

csrf = soup.select_one('#exampleid input[name*="csrf"]')['value']

print(csrf)

ส่งออก

abcdefghijklmnopqrstuvwxyz
2021-11-24 07:51:04

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................