String username = request.getParameter("username");
String content = request.getParameter("content");
out.println("{ username : '"+username+"' , content : '"+content+"'}");
无论双引号还是单引号都是成对出现,那么在成对的里面无论写什么,都会被渲染出来。
"{ username : ' " 为第一个字符串;
" ' , content : ' " 为第二个字符串;
"'}" 为第三个字符串;中间的+username+、+content+为两个变量。
不会存在双引号里面套单引号再套双引号的情况,除非是用/转义,而转义后的是原样输出的。
自己之前的迷惑就是将这段代码"{ username : '"+username+"' , content : '"+content+"'}"里面第一个双引号与最后一个双引号成对了。