文件名称:leetcode卡-steve_nodeJS_example:steve_nodeJS_example
文件大小:6.02MB
文件格式:ZIP
更新时间:2024-07-26 14:29:06
系统开源
leetcode卡关于本专案 目的 练习建立一简单且具体的框架网页 :thumbs_up: :sparkles: :two-hump_camel: :party_popper: :rocket: :sign_of_the_horns:目标至少要做出crud的功能 目前问题 nav_bar的dropdown不知道为何无法往下展开(以解决)--原因为没载入bootstrap.js 目前进度 只做出检核使用者,与react基础了解在example04做leetcode练习 实作练习 暂时没有连资料库,先设定帐号123就可进,若没输入123会显示无用户 登入routes设定(nodejs的路由部分) //直接輸入index進入此頁的話會走這邊 router . get ( '/index' , function ( req , res , next ) { res . render ( './main/index' , { title : 'Example' , secoend : 'react_example' , Accounts : '訪客' } ) ; } ) ; //使用post的只有經過post才會經此段,固一定是有從登入那邊來,所以可在此判斷用戶資格 router . post ( '/index' , function