我想开发一个带有nodejs和javascript / jquery的客户端服务器端但是我被卡住了。
我有一个很大的表单,用户提交并将数据发送到/getData
网址,这非常有效。但是我现在的问题是,当我想将这些数据从/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页面。我怎么能这样做?
很抱歉我的帖子很长,但我真的需要帮助。
答案 0 :(得分:3)
您的ajax请求
xhr.open("GET", "http://localhost:3000/getData", true);
您的路线侦听
app.post('/getData', routes.getData);
注意你如何发送GET
请求并听取POST
请求,这不是一回事,所以你最终会进入404路线。
您必须更改ajax请求,并发送POST
请求或路由并侦听GET
请求。