0
없이 IP를 얻을 수있는 것은 내가 아래 얻을 결과에서 "
및 \n
및 \t
을 제거하는 방법 CasperJS 내가 CasperJS 스크립트를 업데이트 이제 한 다른 쓸모없는 데이터
var casper = require('casper').create();
casper.start('http://whatismyipaddress.com/', function() {
if (this.exists('#section_left > div:nth-child(2)')) {
var data = this.getElementInfo('#section_left > div:nth-child(2)');
console.log(JSON.stringify(data.text));
}
});
casper.run();
아래를 참조하십시오.
"\n\n23.221.147.202\n\n\t\t\t\t\t"
업데이 트를하고 작동하도록 수정 내가 필요한 ----- console.log (data.text.trim()); –