0
我想在網站上提交表單,當我運行的代碼,它給我的錯誤:如何處理嵌套形式?(錯誤:mechanize._form.ParseError:嵌套表格)
mechanize._form.ParseError: nested FORMs
所以我查了一下,在網站上有兩種形式互相嵌套。 我需要的形式,第一個,是正確關閉的。
有沒有辦法處理?
我想在網站上提交表單,當我運行的代碼,它給我的錯誤:如何處理嵌套形式?(錯誤:mechanize._form.ParseError:嵌套表格)
mechanize._form.ParseError: nested FORMs
所以我查了一下,在網站上有兩種形式互相嵌套。 我需要的形式,第一個,是正確關閉的。
有沒有辦法處理?
br.select_form(name = "frmName") if name of the form is stated, otherwise
br.select_form(nr=0) which means you are accessing the first form with index 0(nr=0)
br.select_form(謂語=拉姆達F:f.attrs.get( '身份證',無)== '電子郵件形式') 這可能會幫助你在你的功能選擇的形式..
我需要的表格沒有名稱,只有id。 我使用此代碼調用我想要的確切形式: 「def select_form(form): return form.attrs.get('id',None)=='email-form' br.select_form(predicate = select_form )「 但我仍然得到neseted形式錯誤 –