会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Cavalry
博客园
首页
新随笔
联系
订阅
管理
随笔 - 25
文章 - 0
评论 - 0
阅读 -
29022
1
2
3
下一页
2019年9月7日
Vuex
摘要:
阅读全文
posted @ 2019-09-07 22:01 theshine
阅读(161)
评论(0)
推荐(0)
2019年5月25日
Vue打包后处理跨域
摘要: 我们都知道,在处理跨域时经常会用到jsonp,服务器端用到cors,或则本地测试用到nginx反向代理,vue开发模式的proxy等。当我们在自己开发的时候,可能会请求一些网上的接口,但是会遇到一些问题,比如不支持跨域的远程数据接口无法使用,那么要怎么解决呢,先从nginx说起,Nginx (eng
阅读全文
posted @ 2019-05-25 13:52 theshine
阅读(17217)
评论(0)
推荐(0)
2019年1月19日
es6 Promise
摘要: ES6的Promise是一个构造函数,Promise 对象用于一个异步操作的最终完成(或失败)及其结果值的表示,也就是处理异步操作的,异步请求成功,处理成功的操作,异步请求失败停止后续操作。自身有all、reject、resolve方法,原型上有catch、then方法。 一般可以表示为如下,res
阅读全文
posted @ 2019-01-19 18:37 theshine
阅读(278)
评论(0)
推荐(0)
2018年7月10日
express get和post数据
摘要: 1.get-无需中间件req.queryserver.use('/',function(req,res){ req.query;}) 2.post -需要body-parser,这里需要先执行server.use(bodyparser.urlencoded({}));这个解析完body才执行下一步,
阅读全文
posted @ 2018-07-10 15:07 theshine
阅读(711)
评论(0)
推荐(0)
2018年7月8日
Nodejs登陆注册应用
摘要: 1.搭建服务器:const http = require('http');const urlLib = require('url');const querystring = require('querystring');const fs = require('fs'); http.createSer
阅读全文
posted @ 2018-07-08 15:00 theshine
阅读(250)
评论(0)
推荐(0)
2018年4月24日
bootstrap按钮
摘要: 预定义样式 尺寸 需要让按钮具有不同尺寸吗?使用 .btn-lg、.btn-sm 或 .btn-xs 就可以获得不同尺寸的按钮。 通过给按钮添加 .btn-block 类可以将其拉伸至父元素100%的宽度,而且按钮也变为了块级(block)元素
阅读全文
posted @ 2018-04-24 02:49 theshine
阅读(270)
评论(0)
推荐(0)
2018年4月17日
vue-router
摘要: 基本使用: 1.布局 2.写法
阅读全文
posted @ 2018-04-17 14:33 theshine
阅读(260)
评论(0)
推荐(0)
vue--transition多个元素运动
摘要: 多个元素运动: <transtion-group enter-active-class=" " leave-active-class=" "> <p :key=" "></p> <p :key=" "></p> </transtion-group>
阅读全文
posted @ 2018-04-17 03:22 theshine
阅读(1321)
评论(0)
推荐(0)
2018年4月10日
$ git push -u origin masterremote时出现错误: error: GH007: Your push would publish a private email address.
摘要: 解决办法: 登陆GitHub>settings>emails找到keep my email address private√取消
阅读全文
posted @ 2018-04-10 22:28 theshine
阅读(276)
评论(0)
推荐(0)
2018年3月30日
vue.js监听
摘要: Vue.js 监听属性 watch <div id = "computed_props"> 千米 : <input type = "text" v-model = "kilometers"> 米 : <input type = "text" v-model = "meters"> </div> <p
阅读全文
posted @ 2018-03-30 15:31 theshine
阅读(258)
评论(0)
推荐(0)
1
2
3
下一页
公告
昵称:
theshine
园龄:
7年8个月
粉丝:
1
关注:
3
+加关注
<
2025年6月
>
日
一
二
三
四
五
六
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
搜索
最新随笔
1.Vuex
2.Vue打包后处理跨域
3.es6 Promise
4.express get和post数据
5.Nodejs登陆注册应用
6.bootstrap按钮
7.vue-router
8.vue--transition多个元素运动
9.$ git push -u origin masterremote时出现错误: error: GH007: Your push would publish a private email address.
10.vue.js监听
随笔分类
bootstrap(2)
es6(1)
git(1)
HTML5(2)
js(7)
JS运动框架(1)
node(2)
vue(6)
webpack(1)
阅读排行榜
1. Vue打包后处理跨域(17217)
2. webpack 错误提示 Error: Can't resolve 'css-loader'或Error: Can't resolve 'style-loader'(4505)
3. vue--transition多个元素运动(1321)
4. addEventListener()(818)
5. express get和post数据(711)
点击右上角即可分享