本地项目启动: 1.添加代码 if(req.url '/apply'){ res.writeHead(301,{ 'Location':'https://www.baidu.com/' }) } 之后http://localhost:8080/apply会跳转到https://www.baidu.c ...
分类:
Web程序 时间:
2021-01-19 12:06:00
阅读次数:
0
话不多说,看图吧 首先:使用的版本是webstorm2020.1,系统版本是win10 1.首先安装nodemon在终端运行npm install -g nodemon 2.按下面的图打开nodejs配置,再输入 C:\Users\你的用户名\AppData\Roaming\npm\node_mod ...
分类:
Web程序 时间:
2021-01-19 11:44:15
阅读次数:
0
@ 原始源 安装完node之后,默认的原始源是: https://registry.npmjs.org/ cnpm 原始源在国外,所以速度受到限制。 可以通过安装cnpm使用淘宝镜像来进行加速: // 安装cnpm命令,不会改变npm的源 npm install -g cnpm --registry ...
分类:
其他好文 时间:
2021-01-16 12:08:55
阅读次数:
0
1、Express 框架简介及初体验 1.1、Express 框架是什么 Express 是一个属于 Node 平台的 Web 应用开发框架,它提供了一系列的强大特性,帮助你创建各种 Web 应用。 我们可以使用 npm install express 命令进行下载安装。 1.2、Express 框 ...
分类:
其他好文 时间:
2021-01-16 11:49:57
阅读次数:
0
Jdk 8 的hashmap ,内部使用Node 表示数组成员,Node 实现了Map.Entry接口。 put() 过程: 1 public class HashMap<K,V> extends AbstractMap<K,V>implements Map<K,V>, Cloneable, Ser ...
分类:
编程语言 时间:
2021-01-14 11:29:05
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>js树结构列表转化 ...
分类:
Web程序 时间:
2021-01-14 11:18:27
阅读次数:
0
1. su - db2inst1 2.db2 list db directory 3.db2 list node directory 4.db2 list tables for all/user 5.db2 set client connect (number) ...
分类:
数据库 时间:
2021-01-14 11:08:54
阅读次数:
0
13分钟内递归一次性解出 思路如下: class Solution { public boolean isSymmetric(TreeNode root) { //注意可能为null if(root==null) {return true;} return mirrorTree(root.left, ...
分类:
其他好文 时间:
2021-01-14 10:53:52
阅读次数:
0
一、如果在创建Vue@3.0项目的时候没有选择sass则需要安装 npm install -D sass-loader node-sass 二、创建.scss样式文件 在 src/assets/sass 文件夹下创建 index.scss 文件 三、配置根目录下面vue.config.js: 如果需 ...
分类:
其他好文 时间:
2021-01-14 10:51:15
阅读次数:
0
#include<iostream> #include<cstring> #include<algorithm> using namespace std; struct node { string x; //装票数 int num; //装号数 int lenx; //装票数的位数 }s[25]; ...
分类:
编程语言 时间:
2021-01-13 11:00:17
阅读次数:
0