클라이언트 측에서 GET으로 요청해서 서버에서 처리할수 있는방법없나요?
아무리 구글링해도.,. 클라이언트에서 전송한 get변수를 받을수 있는 방법이 없네요...
댓글 3개
13년 전
express.js 에서 req 부분을 처리하시면 됩니다.
express.js 가 node에서 http를 쉽게 처리할수 있도록 해주는 라이브러리입니다.
app.get("/page/", function(req, res) {
console.log('request userid : ' + req.params.userid);
}
대충 이런식
express.js 가 node에서 http를 쉽게 처리할수 있도록 해주는 라이브러리입니다.
app.get("/page/", function(req, res) {
console.log('request userid : ' + req.params.userid);
}
대충 이런식
Terrorboy
13년 전
아... 전송방식을 바꿔야하나보군요...
현제 전송방식은
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=euc-kr" />
<title>Ajax Test</title>
<script language="Javascript">
/*http://blog.naver.com/ctlim2?Redirect=Log&logNo=50044001483*/
/**
* Ajax Call
* @param strURL : call cgi
* @param strFunction : callBack Function
* @param strArgument : argument
*/
function xmlhttpPost(strURL, strArgument, callFunction) {
var xmlHttpReq = false;
var self = this;
// Mozilla/Safari
if(window.XMLHttpRequest) {
self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if(window.ActiveXObject) {
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReq.open('GET', strURL, true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
self.xmlHttpReq.onreadystatechange = function() {
if(self.xmlHttpReq.readyState == 0) { // 아직 초기화 안됨
}
else if(self.xmlHttpReq.readyState == 1) { // 읽는 중
}
else if(self.xmlHttpReq.readyState == 2) { // 읽기 완료
}
else if(self.xmlHttpReq.readyState == 3) { // 작업 중
}
else if(self.xmlHttpReq.readyState == 4) { // 작업완료
callFunction(self.xmlHttpReq);
}
}
self.xmlHttpReq.send(strArgument);
}
/**
* callBack Json
*/
function callBackJson(in_Data){
// JSON 일 때
var arrayDoc = in_Data.responseText;
eval("var jsonData ="+arrayDoc);
//var text = jsonData['id'];
//document.getElementById("result").innerHTML = text;
document.getElementById("result").innerHTML = in_Data.responseText
}
/**
* Ajax Json을 호출 한다.
*/
function callJson()
{
var form = document.forms['f1'];
var id = form.id.value;
var a = form.a.value;
var b = form.b.value;
var id = encodeURIComponent(id);
var a = encodeURIComponent(a);
var b = encodeURIComponent(b);
xmlhttpPost('http://terrorboy.net:40000', "id="+id+"&a="+a+"&b="+b, callBackJson);
}
</script>
</head>
<body>
<form name="f1" accept-charset="">
id: <input id="id" name="id" type="text" value="id" /> <br />
a: <input id="a" name="a" type="text" value="a" /> <br />
b: <input id="b" name="b" type="text" value="b" /> <br />
<input value="Json" type="button" onclick="JavaScript:callJson()" />
<div id="result"></div>
</form>
</body>
</html>
입니다 ㅎㅎ
현제 전송방식은
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=euc-kr" />
<title>Ajax Test</title>
<script language="Javascript">
/*http://blog.naver.com/ctlim2?Redirect=Log&logNo=50044001483*/
/**
* Ajax Call
* @param strURL : call cgi
* @param strFunction : callBack Function
* @param strArgument : argument
*/
function xmlhttpPost(strURL, strArgument, callFunction) {
var xmlHttpReq = false;
var self = this;
// Mozilla/Safari
if(window.XMLHttpRequest) {
self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if(window.ActiveXObject) {
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
self.xmlHttpReq.open('GET', strURL, true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
self.xmlHttpReq.onreadystatechange = function() {
if(self.xmlHttpReq.readyState == 0) { // 아직 초기화 안됨
}
else if(self.xmlHttpReq.readyState == 1) { // 읽는 중
}
else if(self.xmlHttpReq.readyState == 2) { // 읽기 완료
}
else if(self.xmlHttpReq.readyState == 3) { // 작업 중
}
else if(self.xmlHttpReq.readyState == 4) { // 작업완료
callFunction(self.xmlHttpReq);
}
}
self.xmlHttpReq.send(strArgument);
}
/**
* callBack Json
*/
function callBackJson(in_Data){
// JSON 일 때
var arrayDoc = in_Data.responseText;
eval("var jsonData ="+arrayDoc);
//var text = jsonData['id'];
//document.getElementById("result").innerHTML = text;
document.getElementById("result").innerHTML = in_Data.responseText
}
/**
* Ajax Json을 호출 한다.
*/
function callJson()
{
var form = document.forms['f1'];
var id = form.id.value;
var a = form.a.value;
var b = form.b.value;
var id = encodeURIComponent(id);
var a = encodeURIComponent(a);
var b = encodeURIComponent(b);
xmlhttpPost('http://terrorboy.net:40000', "id="+id+"&a="+a+"&b="+b, callBackJson);
}
</script>
</head>
<body>
<form name="f1" accept-charset="">
id: <input id="id" name="id" type="text" value="id" /> <br />
a: <input id="a" name="a" type="text" value="a" /> <br />
b: <input id="b" name="b" type="text" value="b" /> <br />
<input value="Json" type="button" onclick="JavaScript:callJson()" />
<div id="result"></div>
</form>
</body>
</html>
입니다 ㅎㅎ
Terrorboy
13년 전
http://stackoverflow.com/questions/6866751/how-to-combine-two-node-js-app-server-together
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 521 | ||
| 8129 |
|
9년 전 | 655 | |
| 8128 | 9년 전 | 521 | ||
| 8127 |
|
9년 전 | 577 | |
| 8126 | 9년 전 | 509 | ||
| 8125 | 9년 전 | 770 | ||
| 8124 |
|
9년 전 | 526 | |
| 8123 | 9년 전 | 507 | ||
| 8122 | 9년 전 | 439 | ||
| 8121 | 9년 전 | 543 | ||
| 8120 | 9년 전 | 468 | ||
| 8119 | 9년 전 | 553 | ||
| 8118 |
|
9년 전 | 635 | |
| 8117 |
|
9년 전 | 406 | |
| 8116 |
PASKRAN
|
9년 전 | 471 | |
| 8115 | 9년 전 | 460 | ||
| 8114 |
kiplayer
|
9년 전 | 599 | |
| 8113 | 9년 전 | 452 | ||
| 8112 |
|
9년 전 | 560 | |
| 8111 | 9년 전 | 411 | ||
| 8110 | 9년 전 | 446 | ||
| 8109 | 9년 전 | 377 | ||
| 8108 |
|
9년 전 | 544 | |
| 8107 |
|
9년 전 | 442 | |
| 8106 |
|
9년 전 | 442 | |
| 8105 | 9년 전 | 478 | ||
| 8104 |
|
9년 전 | 432 | |
| 8103 |
|
9년 전 | 435 | |
| 8102 |
|
9년 전 | 403 | |
| 8101 |
snshero
|
9년 전 | 788 | |
| 8100 | 9년 전 | 843 | ||
| 8099 | 9년 전 | 816 | ||
| 8098 | 9년 전 | 714 | ||
| 8097 | 9년 전 | 522 | ||
| 8096 | 9년 전 | 715 | ||
| 8095 | 9년 전 | 850 | ||
| 8094 | 9년 전 | 521 | ||
| 8093 | 9년 전 | 807 | ||
| 8092 | 9년 전 | 763 | ||
| 8091 | 9년 전 | 1146 | ||
| 8090 | 9년 전 | 772 | ||
| 8089 | 9년 전 | 979 | ||
| 8088 | 9년 전 | 649 | ||
| 8087 | 9년 전 | 772 | ||
| 8086 | 9년 전 | 525 | ||
| 8085 | 9년 전 | 491 | ||
| 8084 | 9년 전 | 614 | ||
| 8083 | 9년 전 | 582 | ||
| 8082 | 9년 전 | 761 | ||
| 8081 | 9년 전 | 474 | ||
| 8080 | 9년 전 | 573 | ||
| 8079 | 9년 전 | 531 | ||
| 8078 | 9년 전 | 456 | ||
| 8077 | 9년 전 | 534 | ||
| 8076 | 9년 전 | 413 | ||
| 8075 | 9년 전 | 447 | ||
| 8074 | 9년 전 | 405 | ||
| 8073 | 9년 전 | 459 | ||
| 8072 | 9년 전 | 456 | ||
| 8071 |
o1o111
|
9년 전 | 901 | |
| 8070 | 9년 전 | 409 | ||
| 8069 | 9년 전 | 346 | ||
| 8068 | 9년 전 | 597 | ||
| 8067 | 9년 전 | 396 | ||
| 8066 | 9년 전 | 430 | ||
| 8065 | 9년 전 | 390 | ||
| 8064 | 9년 전 | 374 | ||
| 8063 | 9년 전 | 342 | ||
| 8062 | 9년 전 | 313 | ||
| 8061 | 9년 전 | 354 | ||
| 8060 | 9년 전 | 395 | ||
| 8059 | 9년 전 | 330 | ||
| 8058 | 9년 전 | 258 | ||
| 8057 | 9년 전 | 390 | ||
| 8056 | 9년 전 | 314 | ||
| 8055 | 9년 전 | 358 | ||
| 8054 | 9년 전 | 367 | ||
| 8053 | 9년 전 | 418 | ||
| 8052 | 9년 전 | 295 | ||
| 8051 | 9년 전 | 338 | ||
| 8050 | 9년 전 | 396 | ||
| 8049 | 9년 전 | 328 | ||
| 8048 | 9년 전 | 439 | ||
| 8047 | 9년 전 | 367 | ||
| 8046 | 9년 전 | 314 | ||
| 8045 | 9년 전 | 265 | ||
| 8044 | 9년 전 | 350 | ||
| 8043 | 9년 전 | 300 | ||
| 8042 | 9년 전 | 297 | ||
| 8041 | 9년 전 | 357 | ||
| 8040 | 9년 전 | 279 | ||
| 8039 | 9년 전 | 322 | ||
| 8038 | 9년 전 | 273 | ||
| 8037 | 9년 전 | 412 | ||
| 8036 | 9년 전 | 493 | ||
| 8035 | 9년 전 | 436 | ||
| 8034 | 9년 전 | 397 | ||
| 8033 | 9년 전 | 354 | ||
| 8032 | 9년 전 | 449 | ||
| 8031 | 9년 전 | 359 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기