JSON stringifyから要素の値を抽出するにはどうすればよいですか? 以下はサンプルのJSON文字列です。JSON stringifyから要素を抽出する方法
{"resultCount":3,"results":[{"value":"abc","Content-Disposition":"form-data","name":"\"appKey\""},{"value":"123","Content-Disposition":"form-data","name":"\"userName\""},{"value":"test1","Content-Disposition":"form-data","name":"\"password\""}]}
私は ABC 123
TEST1
'JSON.parse' ... –
なぜオブジェクトを文字列化したいのですか? –
オブジェクトをどこかに送るためにオブジェクトを文字列化し、データとして再び解析する必要があるかもしれません。 –