javascriptに依存しないGAE(python)でアラートボックスを表示するオプションはありますか?
データベースでいくつかのアクションを実行した直後、および別のページにリダイレクトする直前に警告ボックスを表示したいのですが、javascript を避けようとしています (主にそれについてあまり知らないため)。
2 つのボタン (次へと戻る) とテキスト領域を備えた html フォームがあります。テキスト領域が空の場合は、フォームを再レンダリングし、テキストに何かがある場合は、データベースを更新した後にアラート ボックスを表示してからリダイレクトしたいと考えています。
def post(self, res1, machine_id):
if back:
self.redirect('/%s/%s' %(username,machine_id)
if next:
user, machine, avisos = self.get_username_machine(username, machine_id)
if not text:
msg = ' you have to input a text'
else:
msg = 'Call submitted'
call = dbstructure.Call(machine_id= machine_id, text= text, rep = rep)
call.put()
#Browser.AlertBox("Call Submitted")
self.redirect('/')
self.render(page, msg=msg)
tgghe ボタンで onclick を実行しようとしましたが、正しく動作させることができません。
誰にでもアドバイスはありますか?
前もって感謝します