BootStrap 템플릿으로 간단한 웹페이지를 만들어보고, API를 적용해보았다.
uicookies.com/bootstrap-datatable/
> git clone https://github.com/puikinsh/Adminator-admin-dashboard.git adminator
> cd adminator
> npm install
> npm run dev
github.com/puikinsh/Adminator-admin-dashboard#getting-started
datatables.net/examples/styling/bootstrap4
위 링크에서 데이터베이스 테이블 frontend 코드를 참고해서 작성한다.
opentutorials.org/course/1375/6851
위에서 ajax 코드를 참고해서 글을 작성한다.
var allowCORS = function(req, res, next) {
res.header('Acess-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET, PUT, POST, DELETE, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization, Content-Length, X-Requested-With');
(req.method === 'OPTIONS') ?
res.send(200) :
next();
};
'👩💻 Programming > Frontend' 카테고리의 다른 글
React Native 앱 4주차 개발일지 (0) | 2021.07.28 |
---|---|
React Native 앱 3주차 개발일지 (0) | 2021.07.27 |
React Native 앱 2주차 개발일지 (0) | 2021.06.23 |
React Native 앱 1주차 개발일지 (0) | 2021.06.14 |
[WEB] 티스토리 스킨 #1 수정 (0) | 2021.04.22 |