111網頁前端設計工程師培訓班
建立路由
- 在函數外面建立 Route 物件
var Route = {};
Route.path = function(route, callback){
Route[route] = callback;
}
- 增加路由:GAS可以接受 GET、POST,故請將路由放置到 doGet() or doPost()
//設定callback 記得建立函數
Route.path("order", order);
- 條件判斷
if(Route[e.parameter.op]){
return Route[e.parameter.op](e);
} else {
return index(e);
}
若op傳來非我方建立路由,一律執行index(e)