سلام مهندس
صبح بخیر
یه زحمت برای شما داشتم
میخوام یک فایل تکست در مسیر سرور ذخیره بشه ولی هر کار میکنم فایل تکست دانلود میشه
mqttcloud.ir
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>How to Create and Save text file in JavaScript</title>
<script src="js/FileSaver.js"></script>
<script>
function saveStaticDataToFile() {
var blob = new Blob(["Welcome to Websparrow.org."],
{ type: "text/plain;charset=utf-8" });
saveAs(blob, "c:\static.txt");
}
</script>
</head>
<body>
<button type="button" onclick="saveStaticDataToFile();">Click to Save</button>
</body>
</html>
صبح بخیر
یه زحمت برای شما داشتم
میخوام یک فایل تکست در مسیر سرور ذخیره بشه ولی هر کار میکنم فایل تکست دانلود میشه
mqttcloud.ir
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>How to Create and Save text file in JavaScript</title>
<script src="js/FileSaver.js"></script>
<script>
function saveStaticDataToFile() {
var blob = new Blob(["Welcome to Websparrow.org."],
{ type: "text/plain;charset=utf-8" });
saveAs(blob, "c:\static.txt");
}
</script>
</head>
<body>
<button type="button" onclick="saveStaticDataToFile();">Click to Save</button>
</body>
</html>

