フォームが提出されたときに、djangoアプリケーションで特定のdivをリフレッシュしようとしています。Django - フォーム提出時にdivを再ロード
index.htmlを
<div class="col-md-8" id="notesColumn">
{% crispy note_form %}
{% include 'item/item_notes.html' %}
</div>
item_notes.html
<div class="panel-group panel-group-simple m-b-0" id="notesList" aria-multiselectable="true" role="tablist">
{% for note in object.itemnote_set.all reversed %}
<div class="panel">
<div class="panel-heading" id="noteHeading{{ forloop.counter }}" role="tab">
<a class="panel-title collapsed" data-parent="#notesList"
data-toggle="collapse" href="#noteCollapse{{ forloop.counter }}"
aria-controls="noteCollapse{{ forloop.counter }}" aria-expanded="false">
<span class="tag tag-default">{{ note.owner.first_name }}</span>
{{ note.get_action_display|upper }}
<small class="panel-actions">{{ note.date_added }}</small>
</a>
</div>
<div class="panel-collapse collapse" id="noteCollapse{{ forloop.counter }}"
aria-labelledby="noteHeading{{ forloop.counter }}" role="tabpanel" aria-expanded="false"
style="height: 0px;">
<div class="panel-body">
{{ note.content }}
</div>
</div>
</div>
{% endfor %}
</div>
app.js(index.htmlの中に含まれる)
$(document).ready(function() {
$("#notesTab form").submit(function(event){
event.preventDefault();
$('#notesList').remove();
$.ajax({
url: "{% url item_notes %}",
success: function(data){
$('#notesColumn').html('data');
}
})
})
views.py
def item_notes(request):
return render_to_response(request, 'candidate/candidate_notes.html')
urls.py
url(r'item/profile/(?P<pk>[0-9]+)/$', views.ItemProfile.as_view(), name='item_profile'),
url(r'item/notes', views.item_notes, name='item_notes'),
私はクロムから取得するエラーは、次のとおりです。
http://127.0.0.1:8000/crm/item/profile/45/%7B%%20url%20item_notes%20%%7D
Failed to load resource: the server responded with a status of 404 (Not Found)
これを試しましたか? '{%url 'item_notes'%}'。 'item_notes'を取り巻く引用符に注意してください。 –
はい私はこれを試しました。それは私にこのエラーを与えた: GET http://127.0.0.1:8000/crm/item/profile/45/%7B%%20url%20'item_notes'%20%%7D 404(見つからなかった) @ jqueryを送る.js:jquery.js @ 9175 AJAX:candidate_details.js @(匿名)8656 :jquery.js @ 15 派遣:4737 elemData.handle @ jquery.js:4549 –
たぶんあなたは '内部のスラッシュが欠落していますurl(r'item/notes/'、...) ' –