0
使用javascript和node.js如何通過ajax將內容發佈到文本文件。使用javascript和node.js如何通過ajax將內容發佈到文本文件
<html>
<body>
<input type="button" value="Click Me" onclick="postContent()">
<script>
function postContent(){
var req=new XMLHttpRequest();
req.open('post','addContent.js',true);//in this sample.txt file i want to insert some content
req.send();
}
</script>
</body>
</html>
addContent.js
var fs = require('fs');
fs.writeFile("/tmp/sample.txt", "Hey there!", function(err) {
if(err) {
console.log(err);
} else {
console.log("The file was saved!");
}
});
確定在服務器端腳本我有寫代碼的內容寫入到一個文本文件。 – sachin
@sachin請閱讀更新的版本。 –
好了,現在我明白了.. – sachin