从Rust中的Json枚举中读出特定字段

时间:2014-04-29 17:58:14

标签: json rust

在Rust 0.9中,我找到了一种从JSON枚举中读取值的方法。但是,我很难在当前的Rust 0.10中解决这个问题。理想情况下,我只是想从Json枚举中读出一个值,但是如果使用预定义的结构也是唯一的方法也很好。

以下是以前的工作:

extern mod extra;

fn main() {
  let json = extra::json::from_str(json_str).unwrap();
  let (lat, long): (f32, f32) = match json {
    Object(o) => { 
      let lat = o.find(&~"latitude").unwrap();
      let lat2 = lat.to_str();
      let lat3: Option<f32> = from_str(lat2);

      let longJson = o.find(&~"longitude").unwrap();
      let longStr = longJson.to_str();
      let long: Option<f32> = from_str(longStr);

      (lat3.unwrap(), long.unwrap())
    }
    _ => { (0.0,0.0) }
  };

  println(lat.to_str());
  println(long.to_str());
}

变量json_str实际上应该在上面定义,但是为了易读起见我放在这里:

{
  'timezone': 'America/Los_Angeles',
  'isp': 'Monkey Brains',
  'region_code': 'CA',
  'country': 'United States',
  'dma_code': '0',
  'area_code': '0',
  'region': 'California',
  'ip': '199.116.73.2',
  'asn': 'AS32329',
  'continent_code': 'NA',
  'city': 'San Francisco',
  'longitude': - 122.4194,
  'latitude': 37.7749,
  'country_code': 'US',
  'country_code3': 'USA'
}

我发现了这个Json example from the nightly documentation,但它似乎有很多样板。有没有办法只读出一些像旧代码示例中的值?谢谢!

1 个答案:

答案 0 :(得分:3)

几乎是同一件事,只有一些功能名称已经改变。这是一个有效的代码:

extern crate serialize;

use serialize::json;

static json_str: &'static str = r#"
{
  "timezone": "America/Los_Angeles",
  "isp": "Monkey Brains",
  "region_code": "CA",
  "country": "United States",
  "dma_code": "0",
  "area_code": "0",
  "region": "California",
  "ip": "199.116.73.2",
  "asn": "AS32329",
  "continent_code": "NA",
  "city": "San Francisco",
  "longitude": -122.4194,
  "latitude": 37.7749,
  "country_code": "US",
  "country_code3": "USA"
}
"#; 

fn main() {
  let json = json::from_str(json_str);
  let (lat, long): (f32, f32) = match json {
    Ok(json::Object(o)) => { 
      let lat = o.find(&~"latitude").unwrap();
      let latOpt: Option<f64> = lat.as_number();

      let long = o.find(&~"longitude").unwrap();
      let longOpt: Option<f64> = long.as_number();

      (latOpt.unwrap() as f32, longOpt.unwrap() as f32)
    }
    Err(e) => fail!("Error decoding: {}", e),
    _ => { (0.0,0.0) }
  };

  println!("{}", lat.to_str());
  println!("{}", long.to_str());
}

请注意,我必须稍微更改您的JSON对象,因为它无效 - 它对字符串使用'而不是",并且经度(-和数字本身由空格分隔。)

另一个细微的变化是不需要执行字符串转换来获取数字。 Json枚举使用as_number()方法返回Option<f64>。如果需要,您可以将f64投射到f32