0
我正在使用django-ajax-selecting從我的數據庫中選擇一個城市。 在字段中輸入時,出現403錯誤(GET方法)。這是捕捉,它昨天工作,我沒有碰到任何相關的東西。Django 403禁止錯誤ajax(帶csrf標記)GET
控制檯登錄
Forbidden (Permission denied): /lookups/ajax_lookup/city
[30/Jan/2016 15:54:01]"GET /lookups/ajax_lookup/city?term=Lyon HTTP/1.1" 403 22
我的形式
<form enctype="multipart/form-data" id="JobOfferForm" action="" method="POST">
{% csrf_token %}
<div class="row">
<div class="input-field col s12">
<p class="grey-text">Ville</p>
{{ jobOfferForm.city }}
</div>
</div>
<button class="btn waves-effect waves-light" name="jobOfferFormOK" type="submit">Sauvegarder</button>
</form>
在此先感謝。