1. 程式人生 > >最基本的前後臺傳值

最基本的前後臺傳值

static ati 代碼 pre 成功 his type lis exp

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jquery-3.2.0.min.js"></script>

</head>
<body>
<input type="text" id="name">

</body>
<script>
$(‘#name‘).on(‘blur‘,function(){
if($(this).val()){
_ajax($(this).val());
}else{
alert(‘不能為空‘);
}
});
function _ajax(name){
$.ajax({
url:‘http://127.0.0.1:3000/ajax_get‘,//請求地址
data:{name:name},//data是前臺傳向後臺的值
type:‘get‘,
success:function(data,status){
console.log(data,status)//這裏console出來的data值會在瀏覽器頁面顯示
},
error:function(err){
console.log(err);
}
})
}
</script>
</html>














後臺代碼:
var express=require(‘express‘);
var app=express();
app.use(express.static(__dirname));
app.get(‘/ajax_get‘,function(req,res){
console.log(req.query);//這裏的值是從前臺傳過來的data值,在cmd裏面顯示
res.json({name:1});//這個值可以傳到前臺的值,使data值裏的name值為1
})
console.log("服務器啟動成功");
app.listen(3000);

最基本的前後臺傳值