サーバー側でDjangoでjQueryを使用しています。私がやろうとしているのは、フォームを介してユーザーからテキストを取得し、同時に about.me やフレーバー.me のようにキャンバス領域にテキストを表示することです。次に、ユーザーはキャンバス領域のテキストを目的の位置にドラッグし、次のボタンをクリックすると、データがデータベースに保存され、ホームページにリダイレクトされる必要があります。window.location を設定したボタンをクリックした場合を除いて、すべてが完璧に機能しています(データはデータベースに保存されています)"http://127.0.0.1:8000".
しかし、ボタンをクリックしてもそのページにアクセスできません。
Django サーバーでいくつかのエラーが発生します。
error: [Errno 32] Broken pipe
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 51161)
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
ここに私のhtmlがあります: https://gist.github.com/2359541
ジャンゴのviews.py:
cover.models から django.http から CoverModel をインポート HttpResponseRedirect をインポート
def coverview(request):
if request.is_ajax():
t = request.POST.get('top')
l = request.POST.get('left')
n = request.POST.get('name')
h = request.POST.get('headline')
try:
g = CoverModel.objects.get(user=request.user)
except CoverModel.DoesNotExist:
co = CoverModel(top=t, left=l, name=n, headline=h)
co.user = request.user
co.save()
else:
g.top = t
g.left = l
g.name = n
g.headline = h
g.save()
return HttpResponseRedirect("/")
urls.py:
url(r'^cover/check/$', 'cover.views.coverview'),
url(r'^cover/$', login_required(direct_to_template), {'template': 'cover.html'}),
誰でも私を助けることができますか?
ありがとう!