2

我正在尝试在 jqGrid 中阅读并发布从 USGS 存储库中提取的一组地震 GeoJSON 数据。请求被接受,但在可能满足标头元数据时显示“Uncaught SyntaxError: Unexpected token”。

$(function () {
    'use strict';
    $.extend($.jgrid.search, {multipleSearch: true, multipleGroup: true, overlay: 0});
    $('#grid').jqGrid({
        url: 'http://earthquake.usgs.gov/earthquakes/feed/geojson/2.5/week?callback=?',
        datatype: 'json',
        colModel: [
            {name: 'mag', label: 'MAGNITUDO', width: 150, jsonmap: 'properties.mag', sorttype: 'number',
formatter: 'number', formatoptions: {decimalPlaces: 2}},
            {name: 'place', label: 'LOCALITA', width: 150, jsonmap: 'properties.place'},
            {name: 'url', label: 'URL', width: 150, jsonmap: 'properties.url'}
        ],
        toppager: true,
        gridview: true,
        rowList: [10, 20, 50, 10000],
        rowNum: 10,
        jsonReader: {
            root: 'features',
            repeatitems: false
        },
        loadonce: true,
        ignoreCase: true,
        height: 'auto'
    }).jqGrid('navGrid', '#grid_toppager', {add: false, edit: false, del: false})
      .jqGrid('filterToolbar', {stringResult: true, defaultSearch: 'cn', searchOnEnter: false});
    $("#grid_toppager option[value=10000]").text('All');
});

你有什么解决办法吗?提前致谢。

4

1 回答 1

2

我查看了 geojson 的文档,我想我找到了问题的原因。似乎 GeoJSON(P)eqfeed_callback用作回调名称(请参见此处)。因此,我修复了一些 jqGrid 选项,这些选项用于以下内容:

url: 'http://earthquake.usgs.gov/earthquakes/feed/geojsonp/2.5/week',
datatype: 'jsonp',
postData: '',
ajaxGridOptions: { jsonp: false, jsonpCallback: 'eqfeed_callback', cache: true},

修改后的演示现在可以工作并显示如下结果

在此处输入图像描述

更新: 修改后的演示使用 GeoJSON 的新 URL 和免费 jqGrid的新版本(4.14.1) 。

于 2013-03-20T10:56:58.170 回答