我的个人网页托管在没有Node的服务器上。
我在Node Server(Heroku)上运行了服务器端脚本。
我正在尝试从服务器js文件中读取个人页面的内容...
这是服务器代码
server.js:
const express = require("express");
const app = express();
const fs = require('fs');
var http = require("http");
const port = process.env.PORT || 3000;
app.use(express.static(__dirname + "/public"));
fs.readFile("http://myportfolio.maxxweb.com", (err, data) => {
if (err) {
console.log(err)
} else {
console.log("Loaded personal page")
}
});
app.get("/", (req, res) => {
res.sendFile(__dirname + "/public/main.html");
});
app.get("/api/names", (req, res) => {
console.log("names api call... ");
});
app.get('/*', (req, res) => {
res.redirect('/error.html')
});
app.get("/get-portfolio-page-content", (req, res) => {
var options = {
host: 'http://myportfolio.maxxweb.com'
};
http.get(options, function(http_res) {
// initialize the container for our data
var data = "";
// this event fires many times, each time collecting another piece of the response
http_res.on("data", function(chunk) {
// append this chunk to our growing `data` var
data += chunk;
});
// this event fires *one* time, after all the `data` events/chunks have been gathered
http_res.on("end", function() {
// you can use res.send instead of console.log to output via express
console.log(data);
});
});
});
app.listen(port, () => {
console.log(`Server running at port ` + port);
})
在将代码分发给Heroku之前,我从本地运行命令> node server.js 。 我收到以下错误:
Server running at port 3000
{ [Error: ENOENT: no such file or directory, open 'C:\maxxpc\project\heroku\http:\myportfolio.maxxweb.com']
errno: -4058,
code: 'ENOENT',
syscall: 'open',
path:
'C:\\maxxpc\\project\\heroku\\http:\\myportfolio.maxxweb.com' }
我是Node环境的新手。有人请引导我。
答案 0 :(得分:3)
fs
模块用于与文件系统进行交互,而不用于发出HTTP请求。
您需要使用一个设计用于发出HTTP请求的模块,例如axios或内置的http和https模块。
答案 1 :(得分:-1)
编辑:
您可以使用http
和request
模块读取远程文件。
使用
request
模块:
var request = require('request');
request.get('http://www.yourdomain.com/myfile.html', function (error, response, body) {
if (error){
return console.log(error)
}
return console.log(body);
});
使用
http
模块:
const https = require("https");
https.get("http://www.yourdomain.com/myfile.html", function(response) {
return console.log(response)
});