function route(handle, pathname, response, postData){
console.log('About to route a request for' + pathname);
if(typeof handle[pathname] === 'function'){
handle[pathname](response, postData);
}else{
console.log('No request handler found for ' + pathname);
response.writeHead(404, {'Content-Type': 'text/plain'});
response.write('404 Not Found', encoding='utf8');
response.end();
}
}
请教大家个问题,cnodejs中发表文章的时候,我们贴出的代码关键字颜色都变成了各种颜色,这个markdown编辑器大家有没有自己配置使用过啊?? 有经验的分享下啊?小弟好想使用这个编辑器,简洁漂亮!