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.
次のコード(JSON構造)からロケーションプロパティにアクセスし、Nodejsで値を割り当てる方法。
{ pos : { lon : 30, lat : 30 } }
ありがとう
文字列変数にJSONがある場合は、次を使用できます。
var json = JSON.parse(theString);
そして、それをアクセスします
json.pos.lon;