We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
データをシリアライズするためのフォーマットを登録します
DataAPI.registerFormat("json", { fileExtension: "json", mimeType: "application/json", serialize: function() { return JSON.stringify.apply(JSON, arguments); }, unserialize: function() { return JSON.parse.apply(JSON, arguments); } });