django 连接resetror:(errno 104)连接被对等端重置

vsnjm48y  于 2023-04-22  发布在  Go
关注(0)|答案(3)|浏览(147)

我正在做一个Django的web项目。前一刻一切都很好,但突然django localhost服务器保持自己重新加载,而不是停止自动重新加载页面。首先,我得到了以下错误:connectionresetror:(errno 104)connection reset by peerAnd the server just kept reloading itself over and over again. What could be the cause for this?Any help will be appreciated.

dluptydi

dluptydi1#

你的Django包版本是什么?
像你这样的django项目中有异常https://github.com/django/django/commit/934acf1126995f6e6ccba5947ec8f7561633c27f
尝试将Django更新到最新版本

pip install --update django
bhmjp9jg

bhmjp9jg2#

已解决。我使用JQuery自动完成从后端搜索数据,并希望实现onclick功能,将用户重定向到特定的项目页面。

$(document).ready(function() {
        $("#search").autocomplete({
            source: "{% url 'ajax-search' %}",
            select: function (event, ui) {
                window.location.href = ui.item.value;
            }
        })
        window.location.href = ''
    });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<div class="search">
                <label for="search"></label><input type="text" oninput="" style="height: 36px" class="searchTerm"
                                                   placeholder="What are you looking for?" name="searchtext"
                                                   id="search"><input type="hidden" id="project-id">
                <button type="submit" class="searchButton">
                    <i class="fa fa-search"></i>
                </button>
            </div>

问题是:

window.location.href = ''

我删除了这行代码,现在一切都好了:)

ru9i0ody

ru9i0ody3#

我已经用简单的技术解决了这个问题。我现在要解释一下。我们都安装了kserve,knative,istio和cert-manager,同时将系统istio-system集成到本地或kserve,我们遵循在严格模式下启用的mtls。示例:apiVersion: security.istio.io/v1beta1 kind: Peer Authentication metadata: name: default namespace: user1 spec: mtls: mode: STRICT我们必须禁用此配置。最好避免应用它。当不使用DNS时

相关问题