Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
node.js を使用して json をデコードする方法を探しています。
私のアプリケーションはとてもシンプルです。Request: PUT with json を取得します。存在する場合、succuess (200) 応答を送信する場合は、json 本体の値を確認する必要があります。
ノードで有効なjsonを実行するにはどうすればよいですか。
、
var code = 'something you need to check'; try { var decoded = JSON.parse(code); // valid json } catch(e) { // invalid json }