사이트의 모든보기 소스 : http://www.portofhueneme.org/home.php이 UrlFetchApp.fetch().getContentText
에서 검색되지 않습니다.UrlFetchApp.fetch(). getContentText를 사용하여 웹 페이지의 소스 코드가 누락되었습니다.
UrlFetchApp은 파이썬의 urllib2 모듈에 대한 래퍼라고 들었습니다. previous post에서는 urllib2가 스크립트에서 동적으로 생성 된 컨텍스트를 가져 오지 않지만 페이지의 나머지 부분을 생성하는 스크립트를 찾을 수 없다고 언급했습니다.
'중요한 공지 사항'에 날짜를 표시하려고합니다.
function test_date() {
var url = UrlFetchApp.fetch('http://www.portofhueneme.org/home.php') ;
var text= hueneme_url.getContentText() ;
Logger.log(hueneme_text) ;
var pattern = /Current Vessel Schedule/
var start = hueneme_text.search(pattern) ;
Logger.log("\n"+start) ;
}