123456789101112131415161718192021222324252627282930313233343536 |
- var Handler = {
- // getViewPath:function(path){
- // var request = URL.parse(VIEWSPATH+path,true);
- // var FileName = request.pathname+'.html';
- // if(FILE.existsSync(FileName)){
- // return FileName;
- // }else{
- // return null;
- // }
- // },
- // getView:function(path){
- // var FileName = this.getViewPath(path);
- // if(FileName){
- // return FILE.readFileSync(FileName,'utf8');
- // }else{
- // return null;
- // }
- // },
- response:function(res,data){
- if(!res) return;
- res.writeHead(200, {'Content-Type': 'text/html'});
- res.write(data);
- res.end();
- },
- apiResponse:function(res,data){
- if(!res) return;
- data = data?{success:1,data:data}:{success:0};
- res.writeHead(200, {'Content-Type': 'text/json'});
- res.write(JSON.stringify(data));
- res.end();
- }
- }
- module.exports = Handler;
|