使用python的webpy庫時。我目前正試圖做一個按鈕。這是我的HTML文件,Python文件和錯誤。Webpy,HTML按鈕錯誤
Code.py - 問題區域
onOff = form.Form(
form.Button('On'),
form.Button('Off'),
)
class index:
def GET(self):
f = onoff()
return render.formtest(f)
def POST(self):
form = onOff()
if not form.validates():
return render.formtest(form)
else:
return "Great Success!"
formtest.html - 整頁
$def with (f)
<form name="main" method="post">
$if not form.valid: <p class="error">Try again, American:</p>
$:form.render()
<input type="submit" /> </form>
錯誤信息,主要錯誤
<type 'exceptions.TypeError'> at/
GET() takes exactly 1 argument (2 given)
Python /usr/local/lib/python2.7/dist-packages/web/application.py in
handle_class, line 437
Web GET http://192.168.0.34:8080/
高級
歡迎來到Stack Overflow!請將您的代碼和錯誤發佈到您的問題中,而不是鏈接,並且如果可能,請將其編輯爲顯示問題的最簡短的代碼。更多的信息在這裏:[mcve] –
在那裏,我在帖子中修復它,謝謝你讓我知道 –