您的位置:首页 > 科技 > IT业 > 在线网站推荐几个_建网是什么_重庆seo软件_百度seo排名软件

在线网站推荐几个_建网是什么_重庆seo软件_百度seo排名软件

2025/1/9 1:04:47 来源:https://blog.csdn.net/qq_41369135/article/details/144989422  浏览:    关键词:在线网站推荐几个_建网是什么_重庆seo软件_百度seo排名软件
在线网站推荐几个_建网是什么_重庆seo软件_百度seo排名软件

所有接入前端token放localStorage, 或者后端cookie中获取鉴权

本案例以放localStorage为例
一、创建global.js

$(document).ready(function() {// 设置全局的 AJAX 请求头$.ajaxSetup({headers: {'Authentication': localStorage.getItem('Authentication') }});
});

二。全部模板都引入

<script type="text/javascript" src="js/global.js"></script>

三、修改window.open()

// 在每次请求时读取认证信息fetch('${baseUrl}onlinePreview?url=' + encodeURIComponent(b64Encoded), {headers: {'Authentication': localStorage.getItem('Authentication') // 从 localStorage 中读取}}).then(response => response.text()).then(data => {var newWindow = window.open(); // 打开新窗口if (!newWindow) {console.error('Failed to open new window. It might be blocked by the browser.');return;}newWindow.document.write(data); // 写入内容newWindow.document.close(); // 结束写入newWindow.location.replace('${baseUrl}onlinePreview?url=' + encodeURIComponent(b64Encoded)); // 强制更新 URL}).catch(error => {console.error('Fetch error:', error); // 打印错误信息});

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com