EL1 [Node js] ${} 표현식 오픈 튜토리얼을 보면서 Nodejs를 차근차근 따라해보고 있는데 jsp에서의 EL 표현식과 비슷한 표현식을 알게 되었습니다. 사용법은 EL과 거의 똑같았지만 리터럴이 홀따옴표(')나 쌍따옴표(")가 아닌 숫자 1옆에 있는 특수문자 (`)를 리터럴로 사용해야 저 표현식이 제대로 인식되었습니다. var template = ''; fs.readFile(`data/${queryData.id}`, 'utf8', function(err, description){ console.log(description); if(err) throw err; template = ` ${description} `; response.end(template); }); 그리고 response.end() 함수를 readFile 바깥에다 두었.. 2020. 5. 20. 이전 1 다음