0

私の質問はかなり単純だと思います。基本的に、私はプロフィールを持っています。多くの変数が渡されます。たとえば、名前、ユーザー名、プロフィール写真など、それぞれのページで更新される多くの変数があります。したがって、1つのページを使用してプロフィール写真を更新し、そのフォームはフォームからハンドラーにデータを送信し、それをデータベースにput()します。私がここでやろうとしているのは、プロファイルの編集に使用されるすべてのフォームを1つのページに同時に配置することです。

そのページを処理するために1つの巨大なハンドラーが必要ですか?ページの下部にある[保存]をクリックしたときに、変更されていないデータの上書きを回避するにはどうすればよいですか?現在、5つのプロファイル変数があり、それらは5つのハンドラーと、それぞれのフォームを含む5つの個別のページにマップされているとします。

ありがとう。

4

1 に答える 1

0

I've used django on most of my webapps, but the concept should be the same; I use ajax to send the data to the backend whenever the user hits submit (and the form returns false) so the user can keep editing it. With ajax, you can send the data to different handlers on the backend. Also, using jQuery, you can set flags to see if fields have been changed, to avoid sending the ajax message in the first place. Ajax requests behave almost exactly like standard HTTP requests, but I believe the header indicates AJAX.

If you're looking at strictly backend, then you will need to do multiple "if" statements on the backend and check one field at a time to see if it has been changed. On the backend you should still be able to call other handlers (passing them the same request).

于 2012-08-01T17:47:24.387 に答える