您的位置:首页 > 健康 > 美食 > 永兴做网站_网络空间安全专业大学排名_现在百度推广有用吗_推广的渠道和方法有哪些

永兴做网站_网络空间安全专业大学排名_现在百度推广有用吗_推广的渠道和方法有哪些

2024/12/28 6:50:57 来源:https://blog.csdn.net/weixin_41290949/article/details/144107288  浏览:    关键词:永兴做网站_网络空间安全专业大学排名_现在百度推广有用吗_推广的渠道和方法有哪些
永兴做网站_网络空间安全专业大学排名_现在百度推广有用吗_推广的渠道和方法有哪些

在这里插入图片描述

在这里插入图片描述

<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.12.2</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!--用于禁用MSIE和Chrome友好错误页的填充 -->

异常说明

  1. 使用wangEditor编辑器,提交内容;
  2. 正常数据的文本,正常提交;
  3. 外网使用时,上传图片或视频后,出现404页面,具体提示信息:a padding to disable MSIE and Chrome friendly error page
  4. 内网使用时,正常;

异常排查

  • 把所有精力放在解决“a padding to disable MSIE and Chrome friendly error page”是个错误,导致对NGINX的配置、内网外网都进行过怀疑和调试;
  • 尤其是内网可用,外网不可用,更是导致跑了很多远路;
  • 其实,问题的关键在于上传图片后,正常的路由无法获取,就代表网络层被阻断了
  • 逐行调试,对代码转义后,一切正常。

解决方案

转义函数

/*HTML代码转义*/
function escapeHtml(unsafe) {return unsafe.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;");
}

字段调用

   $.ajax({type: "post",url: "?m=Forum&a=forumDeal&act=add",async: true,data: {section: $('#sect_name').val(),forum_title: $('#forum_title').val(),forum_abstract: $('#forum_abstract').val(),forum_age: $('#forum_age').val(),forum_sex: $('#forum_sex').val(),forum_chief: $('#forum_chief').val(),forum_subjective: escapeHtml(forum_subjective),forum_objective: escapeHtml(forum_objective),forum_assess: escapeHtml(forum_assess),forum_treat: escapeHtml(forum_treat),forum_effect: $('#forum_effect').val(),forum_evaluate: escapeHtml(forum_evaluate)},dataType: "json",success: function (res) {//console.log(res);if (res.code == 0) {layer.msg(res.msg, {icon: 2, time: 2000});} else {layer.msg(res.msg, {icon: 1, time: 2000}, function () {window.parent.location.href = "?m=My&a=myForum";});}}, error: function (err) {console.log(err)}});

入库转义

        $forum_age = html_entity_decode($_POST['forum_age']);$forum_sex = html_entity_decode($_POST['forum_sex']);$forum_subjective = html_entity_decode($_POST['forum_subjective']);$forum_chief = html_entity_decode($_POST['forum_chief']);$forum_objective = html_entity_decode($_POST['forum_objective']);$forum_assess = html_entity_decode($_POST['forum_assess']);$forum_treat = html_entity_decode($_POST['forum_treat']);$forum_effect = html_entity_decode($_POST['forum_effect']);$forum_evaluate = html_entity_decode($_POST['forum_evaluate']);

@漏刻有时

版权声明:

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

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