Explorar o código

Duktape example: show content of civetweb specific javascript objects

bel %!s(int64=9) %!d(string=hai) anos
pai
achega
e9860d7180
Modificáronse 1 ficheiros con 17 adicións e 7 borrados
  1. 17 7
      test/page2.ssjs

+ 17 - 7
test/page2.ssjs

@@ -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')