客户端 javascript 找不到我的 url
Client side javascript doesn't find my url
我想用 nodejs 和 javascript/jquery 开发一个客户端服务器端,但我被卡住了。
我有一个很大的表格,用户提交并且数据被发送到 /getData
url 并且工作得很好。但我现在的问题是当我想将这些数据从 /getData
获取到我的客户端时。
这是我的客户文件:
var client = {};
client.start = function () {
client.getData();
};
client.cb_get = function () {
var data={};
if (this.readyState == 4 && this.status == 200) {
data= JSON.parse(this.responseText);
alert("We get the data" + JSON.stringify(data, null, 4));
client.chart(data);
} else {
alert("Sorry this page is not allow without processing any form");
}
};
client.get = function(req, cb) {
var xhr = new XMLHttpRequest();
xhr.open("GET", req, true);
xhr.onreadystatechange = cb;
xhr.send();
};
client.getData= function () {
var req="http://localhost:3000/getData";
client.get(req,client.cb_get);
};
client.chart= function (data) {
//Display data as charts using jquery in an other html page.
};
window.onload = setTimeout(client.start, 1);
HTMLElement.prototype.has_class = function (c)
{
return this.className.indexOf(c) >= 0;
};
但是我一直都是404错误,不知道为什么。
我的服务器文件:
var express = require('express')
bodyParser =require("body-parser");
routes= require('./router.js');
var app= express();
app.use(express.static(__dirname + '/'));
//Here we are configuring express to use body-parser as middle-ware.
app.use(bodyParser.urlencoded({ extended: false }));
//define our routes
app.get('/', routes.index); //open home page
app.get('/simulation', routes.simulation);
app.get('/chartData', routes.chartData);
app.post('/getData', routes.getData);
//In case of malicious attacks or mistyped URLs
app.all('*', function(req, res){
res.send(404);
})
var server = app.listen(3000, function () {
var host = server.address().address
var port = server.address().port
console.log('Example app listening at http://%s:%s', host, port)
})
我的路由器文件:
module.exports.index= function(req, res){
fs.readFile('index.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.simulation= function(req, res){
fs.readFile('simulation.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.chartData= function(req,res) {
fs.readFile('chartPage.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.getData= function(req,res) {
var data= {};
data= req.body;
res.send(JSON.stringify(data, null, 4));
console.log(req.body);
};
那我哪里错了?
此外,当我提交时,我的 /getdata
页面打开(由于在我的表单标签中指定 action= /getData
正常)但我想直接打开我的 html 页面和图表。我该怎么做?
对不起各位久等了 post,但我真的需要帮助。
您的 ajax 请求
xhr.open("GET", "http://localhost:3000/getData", true);
你的路由监听
app.post('/getData', routes.getData);
注意你是如何发送一个 GET
请求和监听一个 POST
请求的,这不是一回事,所以你最终进入了 404 路由。
您必须更改 ajax 请求并发送 POST
请求,或者更改路由并侦听 GET
请求。
我想用 nodejs 和 javascript/jquery 开发一个客户端服务器端,但我被卡住了。
我有一个很大的表格,用户提交并且数据被发送到 /getData
url 并且工作得很好。但我现在的问题是当我想将这些数据从 /getData
获取到我的客户端时。
这是我的客户文件:
var client = {};
client.start = function () {
client.getData();
};
client.cb_get = function () {
var data={};
if (this.readyState == 4 && this.status == 200) {
data= JSON.parse(this.responseText);
alert("We get the data" + JSON.stringify(data, null, 4));
client.chart(data);
} else {
alert("Sorry this page is not allow without processing any form");
}
};
client.get = function(req, cb) {
var xhr = new XMLHttpRequest();
xhr.open("GET", req, true);
xhr.onreadystatechange = cb;
xhr.send();
};
client.getData= function () {
var req="http://localhost:3000/getData";
client.get(req,client.cb_get);
};
client.chart= function (data) {
//Display data as charts using jquery in an other html page.
};
window.onload = setTimeout(client.start, 1);
HTMLElement.prototype.has_class = function (c)
{
return this.className.indexOf(c) >= 0;
};
但是我一直都是404错误,不知道为什么。
我的服务器文件:
var express = require('express')
bodyParser =require("body-parser");
routes= require('./router.js');
var app= express();
app.use(express.static(__dirname + '/'));
//Here we are configuring express to use body-parser as middle-ware.
app.use(bodyParser.urlencoded({ extended: false }));
//define our routes
app.get('/', routes.index); //open home page
app.get('/simulation', routes.simulation);
app.get('/chartData', routes.chartData);
app.post('/getData', routes.getData);
//In case of malicious attacks or mistyped URLs
app.all('*', function(req, res){
res.send(404);
})
var server = app.listen(3000, function () {
var host = server.address().address
var port = server.address().port
console.log('Example app listening at http://%s:%s', host, port)
})
我的路由器文件:
module.exports.index= function(req, res){
fs.readFile('index.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.simulation= function(req, res){
fs.readFile('simulation.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.chartData= function(req,res) {
fs.readFile('chartPage.html', function(err, page) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(page);
res.end();
});
};
module.exports.getData= function(req,res) {
var data= {};
data= req.body;
res.send(JSON.stringify(data, null, 4));
console.log(req.body);
};
那我哪里错了?
此外,当我提交时,我的 /getdata
页面打开(由于在我的表单标签中指定 action= /getData
正常)但我想直接打开我的 html 页面和图表。我该怎么做?
对不起各位久等了 post,但我真的需要帮助。
您的 ajax 请求
xhr.open("GET", "http://localhost:3000/getData", true);
你的路由监听
app.post('/getData', routes.getData);
注意你是如何发送一个 GET
请求和监听一个 POST
请求的,这不是一回事,所以你最终进入了 404 路由。
您必须更改 ajax 请求并发送 POST
请求,或者更改路由并侦听 GET
请求。