Node res.write 왜곡된 솔루션: 1. 헤더 정보를 "Content-Type':'text/plain; charset=utf-8"로 설정합니다. 2. 코드를 "res.write(JSON.stringify( { msg:data})".
이 문서의 운영 환경: Windows 7 시스템, nodejs 버전 10.16.2, Dell G3 컴퓨터.
노드 res.write 잘못된 문제를 해결하는 방법은 무엇입니까?
nodejs res.write 정보 중국어 잘못된 코드 문제로 돌아가기
헤더 정보를 추가해야 합니다:
'Content-Type': 'text/plain; charset=utf-8'
다음과 같습니다:
res.writeHead(200, {'Content-Type': 'text/plain; charset=utf-8'}); res.write(JSON.stringify({msg:data}),'utf8');
권장 학습: "node.js 비디오 튜토리얼"
위 내용은 노드 res.write 왜곡 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!