Spread.Sheets > 開発者の手引き > データの管理 > JSONのインポートおよびエクスポート |
JSONデータをSpread.Sheetsにインポートしたり、Spread.SheetsのデータをJSONデータにエクスポートしたりできます。
次のサンプルコードは、JSONオブジェクトに対してデータをエクスポートおよびインポートします。
JavaScript |
コードのコピー
|
---|---|
activeSheet.getCell(0,0).value(123); var jsonStr = null; // エクスポート jsonStr = JSON.stringify(spread.toJSON()); // インポート spread.fromJSON(JSON.parse(jsonStr)); alert(jsonStr); //alert(jsonStr[0]); |
次のVisual Studioサンプルコードは、ssjsonファイルをロードします。
Web.config |
コードのコピー
|
---|---|
<?xml version="1.0"?> <!-- ASP.NETアプリケーションの構成方法の詳細については、http://go.microsoft.com/fwlink/?LinkId=169433を参照してください。 --> <configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> </system.web> <system.webServer> <staticContent> <mimeMap fileExtension=".ssjson" mimeType="text/plain" /> </staticContent> </system.webServer> </configuration> |
JavaScript |
コードのコピー
|
---|---|
<!DOCTYPE html> <!--jQuery Reference--> <!--Spread.Sheets Widgets JavaScript--> <body> <div class="container"> </html> |