最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I use JSON from a Jekyll _data directory? - Stack Overflow

programmeradmin0浏览0评论

According to the Jekyll docs you can access YAML, JSON, and CSV files in the _data directory using {{ site.data.filename }}.

I have a valid geoJson file of point features called chapters.json. I'm able to access the file, but I'm seeing some strange characters when I use the file in my javascript.

chapters.json excerpt:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "title": "MaptimeBER"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          13.391,
          52.521
        ]
      }
    },
    {...}
  ]
}

For example, when Jekyll processes the following: var chapters = {{ site.data.chapters }};

The output Javascript is:

var chapters = {"type"=>"FeatureCollection", "features"=>[{"type"=>"Feature", "properties"=> ...

My question is, why does the colon separating key-value pairs change to =>? It's causing my javascript to error out.

According to the Jekyll docs you can access YAML, JSON, and CSV files in the _data directory using {{ site.data.filename }}.

I have a valid geoJson file of point features called chapters.json. I'm able to access the file, but I'm seeing some strange characters when I use the file in my javascript.

chapters.json excerpt:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "title": "MaptimeBER"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          13.391,
          52.521
        ]
      }
    },
    {...}
  ]
}

For example, when Jekyll processes the following: var chapters = {{ site.data.chapters }};

The output Javascript is:

var chapters = {"type"=>"FeatureCollection", "features"=>[{"type"=>"Feature", "properties"=> ...

My question is, why does the colon separating key-value pairs change to =>? It's causing my javascript to error out.

Share Improve this question asked Sep 24, 2014 at 2:11 RoyRoy 1,5184 gold badges21 silver badges40 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Use the jsonify filter, it convert Hash or Array to JSON :

var chapters = {{ site.data.chapters | jsonify }};
发布评论

评论列表(0)

  1. 暂无评论