3

私のスクリプト:

var Url = 'http://readonline.egscans.com/Remnant/Chapter_036_[END]';
var response = UrlFetchApp.fetch(Url).getContentText();

スクリプトを実行すると、このエラーが発生します。

"無効な引数: http://readonline.egscans.com/Remnant/Chapter_036_[END] "

4

1 に答える 1

3

次のように、encodeURIComponent を使用して URL をエンコードできます。

var Url = encodeURIComponent('http://readonline.egscans.com/Remnant/Chapter_036_[END]');

参照: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/encodeURIComponent

于 2012-06-28T01:41:09.837 に答える