Web에서 node로 구성된 서버로부터 정보 가져오기 *HTML side Source Code var xmlHttp = null; xmlHttp = new XMLHttpRequest(); xmlHttp.open("POST", '/setRelay', true); xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); //Form Data 형식으로 전송 xmlHttp.send("channel="+_ch+"&status="+value); var result= JSON.parse(xmlHttp.responseText); *Node.js Server side Source Code //여기서 가장중요한건 var bodyParser = require('body.. 더보기 git 계정 변경 git config --global user.name "ted-choi"git config --global user.email ted.choi@cresprit.com 더보기 IP Address 유효성 체크 function checkIP(IpAddress) { var Url = /^(1|2)?\d?\d([.](1|2)?\d?\d){3}$/; return Url.test(IpAddress); } 더보기 이전 1 2 3 4 ··· 7 다음 목록 더보기