このコードをローカルホストに実装しようとしています:
def form_a():
form = SQLFORM(db.registration, deletable=True, request.args(0), upload=URL(r=request, f='download'))
if form.accepts(request.vars, session):
if not form.record:
response.flash = "Your input data has been submitted."
else:
if form.vars.delete_this_record:
session.flash = "User record successfully deleted."
else:
session.flash = "User record successfully updated."
redirect(URL(r=request, f='form_a’))
records = db().select(db.registration.ALL)
return dict(form=form, records=records)
しかし、次の行でキーワード arg エラーの後に非キーワード argが表示されます。
form = SQLFORM(db.registration, deletable=True, request.args(0), upload=URL(r=request, f='download'))
そして、次の行でリテラル エラーをスキャン中に EOL が発生します。
redirect(URL(r=request, f='form_a’))
Python 3 と Web2Py 2.4.6 を使用しています。