摘要:
一、函数导入 1、为模块提供别名 >>> import math as foobar #设置math 别名为foobar >>> foobar.sqrt(4) 显示:2.0 2、为函数提供别名 >>> from math import sqrt as foobar >>> foobar(4) 显示: 阅读全文
摘要:
一、为Express添加about路由 1、新建js文件,about.js 2、打开about.js,并输入以下代码: var express=require('express'); var router=express.Router(); router.get('/',function(req,r 阅读全文
摘要:
一、如何运行NodeJS文件? 1、打开文本编辑器,输入以下内容: var http=require('http'); http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/plain'}); res 阅读全文