pythonコードを使ってjsonデータを作成しました。作成したサンプルjsonデータはこちら
[{'signedDate': u'2013-05-25T04:13:12.2000000Z', 'name': u'Ravi Shastri', 'roleName': u'Firigner'}]
そして、ここにpythonコードがあります
records = []
for i in env:
record1 = {"name":t[0]['name'],"signedDate":t[0]['signedDateTime'],"roleName":t[0]['roleName']}
records.append(record1)
return str(records)
そして、この json データをグリッド ビュー jquery プラグインにバインドしています。jquery ajax コードは次のとおりです。注: responseText は json データです
$(document).ready(function() {
$.ajax({
type: "GET",
url: "/getdetails",
dataType: "json",
success: function (responseText) {
alert(responseText);
$("#exampleGrid").simplePagingGrid({
columnNames: ["name", "signedDate ($)", "roleName"],
columnKeys: ["name", "signedDate", "roleName"],
columnWidths: ["50%", "25%", "25%"],
data: responseText
});
},
error: function (xhr, errorType, exception) {
var errorMessage = exception || xhr.statusText;
alert("There was an error creating your contact: " + errorMessage);
}
});
});
エラーが発生しましたSyntaxError: Unexpected token
.... u
jsonデータが原因であると思います。jsonデータからuを削除する方法はありますか。