Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 django 视图发布 ajax 帖子。由于我没有返回页面而是将数据返回给我的 ajax 回调,因此我没有得到堆栈跟踪。如何在视图中打印我的错误?
如果有帮助,当我进行保存时会发生错误。
如果您使用 jQuery:
$.ajax({ // ... error: function(jqXHR, textStatus, errorThrown) { console.log(errorThrown); } });