UNPKG

281 BHTMLView Raw
1<%?
2 ctx.respHeader={};
3 ctx.error="";
4 var req = ctx.http.get("http://www.baidu.com", function(resp) {
5 ctx.respHeader = resp.headers;
6 aries();
7 }).on('error', function(e) {
8 ctx.error = e;
9 aries();
10 });
11 req.end();
12 %>
13
14
15 <% includeId demo %>