0

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 を実行しようとしましたが、正しく動作させることができません。

誰にでもアドバイスはありますか?

前もって感謝します

4

1 に答える 1

0

アラートのようなボックスを作成し、html 出力のどこかにスローします。

<div class ="alert" style="width:200px;height:100px;background:#f00; border: 1px solid black; margin: 0 auto;">
    This is information!
</div>
于 2012-08-21T21:55:31.507 に答える