2015-06-20 115 views
0

試圖建立我自己的網絡郵件客戶端。 我得到它看起來像這樣HTML - Python如何訪問表單元素?

<form name="input" action="test2.py" methog="get" class="form"> 
    <input type="text" name="Username" placeholder="Username"> 
    <input type="password" name="Pass" placeholder="Password"> 
    <button type="submit" id="login-button">Login</button> 
</form> 

想通過GET方法& &通行證獲得點擊輸入用戶名上的按鈕,以填補這串代碼在Python Web部件的模板。

user = ???(Username) 
pass = ???(Pass) 

並打印到一個新的空白html文件thoses var的值。

python的新東西,所以我嘗試的一切似乎失敗。

+0

https://docs.python.org/2/library/cgi.html#using-the-cgi-module – Rishav

+0

excatly我做了什麼...但似乎不工作點擊。我需要一些Js嗎? – Ragnar

+0

我不這麼認爲..你能粘貼你當前的Python代碼嗎? – Rishav

回答

0

您應該使用method="post",它不會與GET方法(但它拼寫錯誤,你寫了「methog」)。