前後端互動的問題有
1、資料是怎麼傳送到後端?
2、後端是怎麼接收到前端傳送過來的資料?
3、後端怎麼對前端傳送來的資料進行處理?
4、處理完之後又怎麼寫入資料庫,以及給前端返回處理結果?
案例:實現簡單的登陸註冊的頁面
前端:
賬號:密碼:
登入註冊
err:0,msg
:'登入成功'
} -->
後端:
<?php
/* 介面文件
method: get
url: './data/user.php'
引數: type = login 登入
add 註冊
user = 使用者名稱
pass = 使用者密碼
返回:
*/header
('content-type:text/html;charset=utf-8');
$type = $_get['type'];
$user = $_get['user'];
$pass = $_get['pass'];
if ($type && $user && $pass)
//設定編碼
mysqli_set_charset
($link,'utf8');
//判斷要登入還是要註冊
// 執行sql語句
if ($type === 'login')';}
else';}
}else if($type === 'add')');
}else';}
else';}
}}else');
} mysqli_close
($link);}
else';}
?>
以上的內容就是實現前後端互動的** 前後端資料互動
web程式我們都知道處理流程 頁面在使用者操作後,封裝成請求傳送到後台,然後後台處理並響應頁面的請求。但頁面怎樣傳送請求的,其實對於寫c 一直面對黑屏終端的我們初學者是真的不知道怎樣做的。由於畢業設計需要加入web,特此去了解了js的ajax請求,才了解到頁面是怎樣處理的。故寫部落格記錄js和php...
表單 node(實現前後端資料互動)
前台 placeholder 使用者名稱 type password name password placeholder 密碼 type submit value 提交 form body html node後台 const express require express 獲取express模組 c...
前後端資料互動小結
前端一般向後端傳遞json字串,後端拿到字串後解析為實體物件。片段如下 postdata function datatype json success function r 後端拿到字串後解析 user user json.parseobject json,user.class 後端向前端傳遞的一般...