Duktape example: show content of civetweb specific javascript objects

This commit is contained in:
bel 2015-10-09 21:43:16 +02:00
parent 4189a556ab
commit e9860d7180

View File

@ -4,17 +4,27 @@ conn.write("\r\n")
conn.write("<html><body>\r\n")
conn.write("<p>This is an example of a server side JavaScript, served by the ")
conn.write('<a href="https://github.com/civetweb/civetweb/">CivetWeb web server</a>.')
conn.write("</p>\r\n<p>")
conn.write("</p>\r\n")
elms = Object.getOwnPropertyNames(conn)
function print_elements(title, obj)
{
conn.write("<p>\r\n");
conn.write("<b>" + title + "</b><br>\r\n");
elms = Object.getOwnPropertyNames(obj)
for (var i = 0; i < elms.length; i++) {
conn.write(JSON.stringify(elms[i]))
conn.write(JSON.stringify(Object.getOwnPropertyDescriptor(conn, elms[i])))
conn.write("<br>\r\n")
for (var i = 0; i < elms.length; i++) {
conn.write(JSON.stringify(elms[i]) + ":<br>\r\n")
conn.write("Type: " + typeof(obj[elms[i]]) + "<br>\r\n")
conn.write(JSON.stringify(Object.getOwnPropertyDescriptor(obj, elms[i])) + "<br>\r\n")
conn.write("<br>\r\n")
}
conn.write('<br></p>\r\n')
}
conn.write('</p>\r\n')
print_elements("conn", conn)
print_elements("civetweb", civetweb)
conn.write('</body></html>\r\n')