私はstackoverflowのすべてのソリューションをチェックしましたが、私と一緒には機能しませんでした。何が起きているのか分かりません。ここでノードjsのjsonで奇妙なエラーが発生しました
は私のコードです:
var data = "";
req.on('data', function (chunk) {
data += chunk;
});
req.on('end', function() {
// Removed console.log() and after removing it didn't work so Please only answer my question and don't talk about silly things like a missing bracket -_!
//The error is here
var json = JSON.parse(data.toString());
switch (json.method) {
...
}
});
そしてここでは、コンソール出力です:あなたのエンコーディングのようなその表情が設定されていない
data.toString()の値は実際に有効なJSONですか? – nnnnnn