Skip to content

Commit ff545bc

Browse files
committed
2 parents 5637fe6 + 9e5747f commit ff545bc

File tree

2 files changed

+10
-26
lines changed

2 files changed

+10
-26
lines changed

formContacto/ajax30.html

+3-21
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,11 @@
33
<head>
44
<title></title>
55
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
6-
<script src="http://fgnass.github.io/spin.js/dist/spin.min.js"></script>
76
<script>
87
$(document).on('ready',function(){
98
var pet=$('#main form').attr('action');
109
var met=$('#main form').attr('method');
1110
var nom,m,msj; //para enviar la info con nuestro propio objeto json (sin usar serialize())
12-
var opt={
13-
lines: 13, // The number of lines to draw
14-
length: 20, // The length of each line
15-
width: 10, // The line thickness
16-
radius: 30, // The radius of the inner circle
17-
corners: 1, // Corner roundness (0..1)
18-
rotate: 0, // The rotation offset
19-
direction: 1, // 1: clockwise, -1: counterclockwise
20-
color: '#000', // #rgb or #rrggbb or array of colors
21-
speed: 1, // Rounds per second
22-
trail: 60, // Afterglow percentage
23-
shadow: false, // Whether to render a shadow
24-
hwaccel: false, // Whether to use hardware acceleration
25-
className: 'spinner', // The CSS class to assign to the spinner
26-
zIndex: 2e9, // The z-index (defaults to 2000000000)
27-
top: 'auto', // Top position relative to parent in px
28-
left: 'auto' // Left position relative to parent in px
29-
};
3011
var target=document.getElementById("#status");
3112

3213
$('#main form').on('submit',function(e){
@@ -35,14 +16,15 @@
3516
$.ajax({
3617
beforeSend:function(){
3718
//$('#status').spin({radius:2,width:2,heigh:2,length:4});
38-
var spinner=new Spinner(opt).spin(target);
3919
nom=document.fo.nombre.value;
4020
m=document.fo.mail.value;
4121
msj=document.fo.mensaje.value;
4222
},
4323
url:pet,
4424
type:met,
45-
data:$('#main form').serialize(), //esta es una manera de enviarlo
25+
contentType:'application/json',
26+
data:JSON.stringify({nombre:nom,mail:m,mensaje:msj}),
27+
//$('#main form').serialize(), //esta es una manera de enviarlo
4628
//data:{nombre:nom,mail:m,mensaje:msj},
4729
success:function(resp){
4830
$('#status').html('<img src=./ok.png />');

server-formContacto.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,28 @@ var app=exp(); //el tutorial indicaba exp.createServer()
1010
app.use(app.router);
1111
app.use('/',exp.static(__dirname + "/formContacto"));
1212

13-
/*
13+
1414
app.get("/",function(request,response){
1515
var contenido=fs.readFileSync("./ajax30.html");
1616
response.setHeader("Content-type","text/html");
1717
response.send(contenido);
1818
});
19-
*/
19+
2020

2121
app.post("/peticion",function(request,response){
2222
var body='';
2323
//console.log("petición post recibida");
2424
request.on('data', function(chunk) {
25-
body+=chunk.toString();
25+
body+=chunk;//chunk.toString();
2626
});
2727

2828
request.on('end', function() {
2929
// empty 200 OK response for now
30-
response.writeHead(200, "OK", {'Content-Type': 'text/html'});
30+
var resultado=JSON.parse(body);
31+
response.writeHead(200, "OK", {'Content-Type': 'text/html'});
3132
response.end();
32-
console.log(body);
33+
34+
console.log(resultado);
3335
});
3436
});
3537

0 commit comments

Comments
 (0)