質問編集履歴

4

変更ミス

2021/05/22 00:35

投稿

xu0124
xu0124

スコア31

test CHANGED
File without changes
test CHANGED
@@ -1,9 +1,21 @@
1
- ドがないということで削除します
1
+ GASでウェブアプリケションして導入してアプリを公開しています.
2
2
 
3
- コードないということ削除します
3
+ デプロイの度に新しいURL発行されますが、GASその最新のURLを取得する方法はありますでしょうか?
4
4
 
5
- がないということ削除しま
5
+ **例:HTMLを公開してハイパリンク先常に最新のウェブアプリケーションにURLにるようにしたいです**
6
6
 
7
- コードがないということで削除します。
7
+ ```gas
8
8
 
9
- コードがないということで削除します。
9
+ function viewr(){
10
+
11
+ var url = "https://script.google.com/macros/s/xxxxxxxxxxxxxxxxx/exec"; // ウェブアプリケーションURL
12
+
13
+ var script = "<script>window.open('" + url + "', '_blank').focus();google.script.host.close();</script>";
14
+
15
+ var html = HtmlService.createHtmlOutput(script);
16
+
17
+ SpreadsheetApp.getUi().showModalDialog(html, 'Open ' + url);
18
+
19
+ }
20
+
21
+ ```

3

指摘修正

2021/05/22 00:35

投稿

xu0124
xu0124

スコア31

test CHANGED
File without changes
test CHANGED
@@ -1,27 +1,9 @@
1
- GASでウェブアプリケションとして導入してアプリを公開しています.
1
+ ドがないいうことで削除します
2
2
 
3
+ コードがないということで削除します。
3
4
 
5
+ コードがないということで削除します。
4
6
 
5
- デプロイの度に新しURLが発行されますが、GASその最新のURLを取得する方法はありますでしょうか?
7
+ コードがなということ削除します
6
8
 
7
-
8
-
9
- **例:HTMLを公開してハイパーリンク先が常に最新のウェブアプリケーションにURLになるようにしたいです**
10
-
11
-
12
-
13
- ```gas
14
-
15
- function viewr(){
9
+ コードがないということで削除します。
16
-
17
- var url = "https://script.google.com/macros/s/xxxxxxxxxxxxxxxxx/exec"; // ウェブアプリケーションURL
18
-
19
- var script = "<script>window.open('" + url + "', '_blank').focus();google.script.host.close();</script>";
20
-
21
- var html = HtmlService.createHtmlOutput(script);
22
-
23
- SpreadsheetApp.getUi().showModalDialog(html, 'Open ' + url);
24
-
25
- }
26
-
27
- ```

2

記述ミス

2021/05/22 00:34

投稿

xu0124
xu0124

スコア31

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  var url = "https://script.google.com/macros/s/xxxxxxxxxxxxxxxxx/exec"; // ウェブアプリケーションURL
18
18
 
19
- var script = "<script>window.open('" + url + "', '_blank').focus();google.script.host.close();</script>";;
19
+ var script = "<script>window.open('" + url + "', '_blank').focus();google.script.host.close();</script>";
20
20
 
21
21
  var html = HtmlService.createHtmlOutput(script);
22
22
 

1

コードを追加

2021/04/08 15:07

投稿

xu0124
xu0124

スコア31

test CHANGED
File without changes
test CHANGED
@@ -1,7 +1,27 @@
1
- GASでウェブアプリケーションとして導入してアプリを公開しています
1
+ GASでウェブアプリケーションとして導入してアプリを公開しています.
2
-
3
- デプロイの度に新しいURLが発行されますが、GASのコードでその最新のURLを取得する方法はありますでしょうか?
4
2
 
5
3
 
6
4
 
5
+ デプロイの度に新しいURLが発行されますが、GASでその最新のURLを取得する方法はありますでしょうか?
6
+
7
+
8
+
7
- 例:HTMLを公開してハイパーリンク先が常に最新のウェブアプリケーションにURLになるようにしたいです
9
+ **例:HTMLを公開してハイパーリンク先が常に最新のウェブアプリケーションにURLになるようにしたいです**
10
+
11
+
12
+
13
+ ```gas
14
+
15
+ function viewr(){
16
+
17
+ var url = "https://script.google.com/macros/s/xxxxxxxxxxxxxxxxx/exec"; // ウェブアプリケーションURL
18
+
19
+ var script = "<script>window.open('" + url + "', '_blank').focus();google.script.host.close();</script>";;
20
+
21
+ var html = HtmlService.createHtmlOutput(script);
22
+
23
+ SpreadsheetApp.getUi().showModalDialog(html, 'Open ' + url);
24
+
25
+ }
26
+
27
+ ```