컴퓨터 썸네일형 리스트형 JavaScript URI 1. 현재 URI window.location.href 2. 쿼리스트링 가져오기 function getUrlParams() { var params = {}; window.location.search.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(str, key, value) { params[key] = value; }); return params; } 결과는 객체로 반환된다. 첫 줄 들여쓰기 text-indent p { text-indent: 1em; } input 값 배열로 전달하기 라즈비안에 mongodb 설치하기 아주 쉽다. sudo apt-get install mongodb NodeJS FileSystem (fs) [모듈] const fs = require("fs"); [디렉토리] ▣ 존재 확인 const bool = fs.existsSync("디렉토리경로"); ▣ 생성 fs.mkdirSync("생성 디렉토리 경로"); [파일] ▣ 존재 확인 fs.exists("test.txt", function (exists) { console.log(exists ? "it's there" : "no exists!"); }); ▣ 생성 var fs = require('fs'); var file = 'test1.txt'; fs.open(file,'w',function(err,fd){ if (err) throw err; console.log('file open complete'); }); fs.open() 해당 파일을 엽니다. 옵션.. 이전 1 ··· 69 70 71 72 73 74 75 ··· 88 다음