Deformation starting criterion of sliding-bending model in dip slope: Chen Mingdon; Wang Lansheng; Li Tianbin Proc 6th International Symposium on Landslides, Christchurch, 10–14 February 1992V1, P355–360. Publ Rotterdam: A A Balkema, 1992...
: Jiang Yun; Zhao Qihua; Yan Ming; Wang Lansheng; Hu Kedin; Li Zhongde; Kun Zhenguo; Xiao Siyuan; Yu Guang Proc 6th International Symposium on Landslides, Christchurch, 10–14 February 1992V1, P133–138. Publ Rotterdam: A A Balkema, 1992Show moreShow less...
const express=require('express'); const app=express(); const PORT=3000 const HOST='localhost' //创建路由/路由中间件 //目标http://localhost:8000/home app.get('/home',(req,res,next)=>{ // req:请求 // res:响应 // next:请求与响应之间的连接 res.send('平安夜') // res.json({ //...
什么是数据库? 数据库(Database)是按照数据结构来组织、存储和管理数据的仓库 数据库能做什么? 存储数据 数据库排行?数据库的分类有哪些?代表有是什么? 关系型数据库【 SQL 】 代表: MySQL ... 非关系型数据库【 NoSQL 】 代表: MongoDB ...如何区别一个数据库是什么类型数据库?
巴勒斯坦武装组织伊斯兰圣战组织和哈马斯谴责巴勒斯坦权力机构星期四在约旦河西岸杀害一名伊斯兰圣战组织战士,此举进一步加剧了该地区的紧张局势。 事件经过:半岛电视台阿拉伯语频道周四早上报道称,图勒凯尔姆萨拉亚圣城旅一名成员被巴勒斯坦安全部门枪杀。萨拉亚圣城旅是伊斯兰圣战组织的武装分支。
Node.js 事件驱动 问题: Node.js中有DOM吗? 没有 结论: 原生js DOM 事件都不能用 创建了一个叫做 events 内置模块来解决这个问题 constevents=require('events');//events.EventEmitter//构造函数console.log(events.EventEmitter.prototype)//原型链/*EventEmitter{_events:undefined,_eventsCount:0,_maxListeners...
Node.js文件的运行? 使用Node.js编译器 使用命令运行 Node.js文件的实时监听改动 nodemon Node.js版本 Current [ 最新的版本 ] - 小白鼠 LTS - 长期稳定版本 Node.js的模块化问题 Node.js采用了Common.js模块化 应用 内置模块 -> 可以直接使用 constfs =require('fs')// Common.js 模块引入方式/* ...
position: absolute; opacity: 1; } </style> </head> <body> <div></div> <script src="./animation.js"></script> <script> var div = document.querySelector('div'); // animate(div, 'width', 500); // animate(div, 'opacity', 50); ...