gpt4 book ai didi

javascript - 如何使用 res.writeHead(301, { "Location": "/path/within/site" })?) 在 http node.js 的 res.writehead 中附加警报消息

转载 作者:行者123 更新时间:2023-11-27 22:55:49 27 4
gpt4 key购买 nike

      res.writeHead(301,  "<!DOCTYPE html>" +
"<html lang='en' dir='ltr'>" +
"<head>" +
"<met charset='utf-8'>" +
"<title>Hola Mundo</title>" +
"</head>" +
"<body>" +
"<script type='text/javascript'>alert('DOne')</script>" +
"</body>" + "</html>", { "Location": "http://localhost:8086/uploadform" });

它不显示警报消息并直接重定向到给定链接,我想先显示警报消息然后再重定向到给定链接。

最佳答案

如果你真的想那样做,你可以像这样将所有内容封装在脚本中:

 res.writeHead(301,  "<!DOCTYPE html>" +
"<html lang='en' dir='ltr'>" +
"<head>" +
"<met charset='utf-8'>" +
"<title>Hola Mundo</title>" +
"</head>" +
"<body>" +
"<script type='text/javascript'>document.onreadystatechange=function(){alert('DOne')}</script>" +
"</body>" + "</html>", { "Location": "http://localhost:8086/uploadform" });

关于javascript - 如何使用 res.writeHead(301, { "Location": "/path/within/site" })?) 在 http node.js 的 res.writehead 中附加警报消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59244543/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com