,可以通过以下步骤实现:
let jsonString = '{"name": "John", "age": 30, "city": "New York"}';
let jsonObject = JSON.parse(jsonString);
let name = jsonObject.name;
console.log(name); // 输出:John
let jsonString = '{"name": "John", "age": 30, "address": {"city": "New York", "country": "USA"}}';
let jsonObject = JSON.parse(jsonString);
要提取嵌套对象中的值,可以使用以下代码:
let city = jsonObject.address.city;
let country = jsonObject.address.country;
console.log(city); // 输出:New York
console.log(country); // 输出:USA
let jsonString = '{"fruits": ["apple", "banana", "orange"]}';
let jsonObject = JSON.parse(jsonString);
要提取数组中的值,可以使用以下代码:
let firstFruit = jsonObject.fruits[0];
let secondFruit = jsonObject.fruits[1];
console.log(firstFruit); // 输出:apple
console.log(secondFruit); // 输出:banana
以上是从Ionic 2中的Json字符串中提取值的基本步骤。根据具体的业务需求,可以进一步处理和操作提取出的值。
领取专属 10元无门槛券
手把手带您无忧上云