エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GoogleAppsScript(GAS)のスクリプトレット経由でオブジェクトを受け取る - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GoogleAppsScript(GAS)のスクリプトレット経由でオブジェクトを受け取る - Qiita
<!DOCTYPE html> <html> <head> <base target="_top"> </head> <body> <script> window.onload = functi... <!DOCTYPE html> <html> <head> <base target="_top"> </head> <body> <script> window.onload = function () { // google.script.run使った方法 google.script.run.withSuccessHandler(function (data) { console.log(data); }).getData(); // 方法1 var data = <?!= JSON.stringify(data); ?>; console.log(data); // 方法2 data = JSON.parse('<?!= JSON.stringify(data).replace(/\\/g, "\\\\"); ?>'); console.log(data); // 方法3 data

