Django不将其重定向到网页

发布于 2025-01-24 04:21:51 字数 680 浏览 0 评论 0原文

我正在使用内置DLP系统在Django中创建消息传递应用程序。当消息中检测到敏感单词时,我想重定向到网页。但是网页没有被重定向到。它在终端显示,但不在前端。

在consumer.py


async def chat_message(self, event):
        message = event['message']
        username = event['username']

        if (re.findall("yes|Yes", message)):
            response = await requests.get('http://127.0.0.1:8000/dlp/')
            print('message')
            
        else:
            await self.send(text_data=json.dumps({
            'message': message,
            'username': username
        })) 

终端中的输出

WebSocket CONNECT /ws/2/ [127.0.0.1:32840]
HTTP GET /dlp/ 200 [0.00, 127.0.0.1:32842]
message 


I am creating a messaging application in django with a built-in DLP system. I want to redirect to a web page when a sensitive word is detected in the message. But the webpage is not being redirected to. It is showing in the terminal but not on the front-end.

In consumers.py


async def chat_message(self, event):
        message = event['message']
        username = event['username']

        if (re.findall("yes|Yes", message)):
            response = await requests.get('http://127.0.0.1:8000/dlp/')
            print('message')
            
        else:
            await self.send(text_data=json.dumps({
            'message': message,
            'username': username
        })) 

The output in the terminal

WebSocket CONNECT /ws/2/ [127.0.0.1:32840]
HTTP GET /dlp/ 200 [0.00, 127.0.0.1:32842]
message 


如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青瓷清茶倾城歌 2025-01-31 04:21:51

现在,您的后端请求/dlp页面,接收响应,并打印字符串'消息'到控制台。它不会向前端发送任何数据。

我认为,最简单的解决方案是将status字段添加到您的JSON并在JavaScript中处理。

async def chat_message(self, event):
    message = event['message']
    username = event['username']

    if re.findall("yes|Yes", message):
        print('message')
        await self.send(text_data=json.dumps({
            'status': 1,
            'redirect_to': '/dlp/',
        }))
    else:
        await self.send(text_data=json.dumps({
            'status': 0,
            'message': message,
            'username': username,
        }))
const socket = new WebSocket(...) // url of WS here
socket.onmessage = ev => {
    data = json.loads(ev.data);
    if (data.status === 1){
        window.location.href = new URL(data.redirect_to, window.location.origin);
    } else if (!data.status) {
        // handle normal message
    } else {
        alert('Error code forgotten!')
    }
}

Now your backends requests /dlp page, receives the response and prints string 'message' to console. It doesn't send any data to frontend.

The most simple solution, I think, will be to add status field to your json and handle it in javascript.

async def chat_message(self, event):
    message = event['message']
    username = event['username']

    if re.findall("yes|Yes", message):
        print('message')
        await self.send(text_data=json.dumps({
            'status': 1,
            'redirect_to': '/dlp/',
        }))
    else:
        await self.send(text_data=json.dumps({
            'status': 0,
            'message': message,
            'username': username,
        }))
const socket = new WebSocket(...) // url of WS here
socket.onmessage = ev => {
    data = json.loads(ev.data);
    if (data.status === 1){
        window.location.href = new URL(data.redirect_to, window.location.origin);
    } else if (!data.status) {
        // handle normal message
    } else {
        alert('Error code forgotten!')
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文