O上有一些JavaScript代码的页面,我将数据从textarea发送到php文件save.php以将数据保存在服务器上
代码:
var data = 'data='+document.getElementById("data").value;
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
response.innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","save.php",true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send(data);
发送数据很好,但是如果我在save.php上的php中回显数据,则%ad->会损坏。
save.php 代码:
$post_data = $_POST['data'];
echo $post_data;
textarea包含:
类似:
%packages --excludedocs
@^minimal
@core
kexec-tools
%end
%addon com_redhat_kdump --enable --reserve-mb='auto'
%end
使用%addon是问题,因为它已更改为``don com_redhat_kdump .....
答案 0 :(得分:0)
。-是特殊字符,表示使用了无效的字符代码。这表明您使用了无效的编码。
我建议您在javascript中设置请求的字符编码。
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded;charset=utf-8");
也不要在不使用HTML编码的情况下直接将数据从php直接回显到网页中。
echo htmlentities($post_data, ENT_HTML5, 'UTF-8');
您还可以使用浏览器开发工具查看Web请求标头,以验证服务器未使用其他字符编码发送网页。如果是这样,则可以在PHP中设置标头。
header('Content-Type: text/html; charset=utf-8');
答案 1 :(得分:0)
这是index.php文件
<!DOCTYPE html>
<html>
<?php header('Content-Type: text/html; charset=utf-8'); ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<body>
<h2>KickStart Editace</h2>
<textarea name="text" id="data" style="margin: 0px; width: 800px; height:
600px;"></textarea><br>
<button type="button" onclick="loadDoc()">Načíst data</button>
<button id="save" onclick="save();return false;">Uložit</button>
<div>Stav dokumentu: <span id="demo"></span></div>
<div id="test" ></div>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
$data = this.responseText;
document.getElementById("data").value=this.responseText;
document.getElementById("demo").innerHTML= '<h2 style="color:green;">Načteno</h2>';
}
};
xhttp.open("POST","load.php", true);
xhttp.send();
}
function save(){
var test=document.getElementById("test");
var response=document.getElementById("demo");
var data = 'data='+document.getElementById("data").value;
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
response.innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","save.php",true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=utf-8;");
xmlhttp.send(data);
}
</script>
</body>
</html>
这是save.php
<?php
$post_data = $_POST['data'];
echo $post_data;
if (!empty($post_data)) {
$file = "/var/ftp/pub/scripts/installCentostest.cfg";
$fp = fopen($file, "w");
$data = str_replace("\r", "", $post_data);
fwrite($fp, $post_data);
fclose($fp);
echo '<h2 style="color:green;">Uloženo</h2>';
}
else
echo '<h1 style="color:red;">chyba!!! kontaktujte administrátora</h1>';
?>