POSTで受け取ってデータベースに保存後に戻り値としてcontentとgood_countを返して、pを生成して表示させたいのですが、{"content": "\u3042\u3042\u3042\u3042", "good_count": 0}というように他の要素も消えてしまい文字化けしたデータだけが表示されてしまいます。
文字化けを解消して、pに反映するにはどうすればいいか教えて欲しいです。
よろしくお願いします。
python
1# view.py 2 3from django.shortcuts import render 4from django.shortcuts import redirect 5from .forms import PostForm 6from django.contrib.auth.decorators import login_required 7from .models import Post 8from accounts.models import CustomUser 9import json 10from django.http import JsonResponse 11 12 13@login_required 14def createpost(request, pk): 15 # <int:id>の取得をする 16 to_user = CustomUser.objects.get(pk=pk) 17 18 # Postを保存する 19 if (request.method == 'POST'): 20 # postを作成する 21 p = Post() 22 p.owner_id = request.user.pk 23 # page/<int:id>を引っ張ってきてto_userにする 24 p.to_user = to_user 25 p.content = request.POST.get("content") 26 p.save() 27 # データを返す 28 d = { 29 'content': p.content, 30 'good_count': p.good_count, 31 } 32 return JsonResponse(d) 33 34 # UserへのPostを取得 35 posts = Post.objects.filter(to_user=pk).order_by('good_count') 36 37 # 共通処理 38 params = { 39 'login_user':request.user, 40 'form':PostForm, 41 'to_user':to_user, 42 'posts':posts, 43 } 44 45 return render(request, 'post.html', params
html
1{% extends 'base.html' %} 2 3{% block contents %} 4<main> 5 6 <form id="content_form" action="{% url 'posts' to_user.id %}" method="post"> 7 {% csrf_token %} 8 <p>{{ form.as_p }}</p> 9 <button type="submit">送信</button> 10 </form> 11 12 <div id="posts"> 13 <!-- UserのPost一覧 --> 14 {% for post in posts reversed %} 15 <div class="post"> 16 <p class="content">{{post.content}}</p> 17 <p class="count">{{post.good_count}}</p> 18 <button class="good" type="button">それな!</button> 19 </div> 20 {% endfor %} 21 </div> 22</div> 23</main> 24 25<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> 26<script src="posts.js"></script> 27<script> 28 $('#content_form').on('submit', function(){ 29 $.ajax({ 30 url: "{% url 'posts' to_user.id %}", 31 method: "POST", 32 dataType: 'json', 33 data: { 34 content: '{{form.as_p}}', 35 }, 36 success:function(data){ 37 const p = $('.test1'.text(response.content)); 38 const c = $('.test2'.text(response.good_count)); 39 $('.test').prepend(p); 40 $('.test').prepend(c); 41 $('#content_form').val(''); 42 }, 43 }) 44 }) 45</script> 46{% endblock %}
あなたの回答
tips
プレビュー