nodejs学习初体验(3)api
//url网址解析 // url.parse 将网址解析成对象 > url.parse('https://www.imooc.com/video/6710') > url.parse('https://www.imooc.com/video/6710',true) //query会被解析成对象 > url.parse('//www.imooc.com/vid
//url网址解析 // url.parse 将网址解析成对象 > url.parse('https://www.imooc.com/video/6710') > url.parse('https://www.imooc.com/video/6710',true) //query会被解析成对象 > url.parse('//www.imooc.com/vid
// 模块与包管理工具 npm install 模块的流程 1. 创建模块 test.js 2. 导出模块 (两种) exports.add = function(){} function add(){} exports.add = add 3. 加载模块 var tests = require('./test.js') 4. 使用模块 tests.add(
// 简单的搭建web服务器 var http = require('http'); var server = http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/plain'}); res.end('Hello,world'); }) server.lis
{{item.text}} {{item.text}}
对数组操作的函数 pop push shift unshift splice sort reverse
{{message}} 11 var vm = new Vue({ el:"#app", data:{ show:false, message:'hello' } })
.activated{ color: brown } hello var vm = new Vue({ el:"#app", data:{ activated:"" }, methods:{ handClick:function(){ this.activated = this.activated ==="activated"?'':'activated';
{{fullName}} var vm = new Vue({ el:'#app', data:{ firstName:'Dell', lastName:'Lee', // fullName:"Dell Lee" }, //计算属性:有缓存机制,只要依赖的没有改变,则使用缓存数据 computed:{ fullName:{ get:function(){ r
{{fullName}} var vm = new Vue({ el:'#app', data:{ firstName:'Dell', lastName:'Lee', fullName:"Dell Lee" }, methods:{ // 方法 // fullName:function(){ // return this.firstName+ " "+thi
var vm = new Vue({ el:"#app", data:{ name:'wmc' } })