摘要: <link rel="shortcut icon"type="image/x-icon" href="images/favicon.ico"media="screen" /> 1. 获得一个favicon.ico的图标,大小为16px×16px最为合适 2. 将制作好的图标文件Favicon.ico 阅读全文
posted @ 2017-05-02 09:53 BlueSky1024 阅读(234) 评论(0) 推荐(0)
摘要: axios.get(this.apiUrl+'good/info',{params:{'goodsid':'sp441153'}}) .then(function(response){ console.log(response); _this.pics=response.data.data.pics 阅读全文
posted @ 2017-04-27 16:48 BlueSky1024 阅读(178) 评论(0) 推荐(0)
摘要: 启用jq方法更改数字格式 var params = {'addid':item.addid}; var str = $.param(params); 阅读全文
posted @ 2017-04-27 16:47 BlueSky1024 阅读(399) 评论(0) 推荐(0)
摘要: var instance = axios.create({ baseURL: 'http://qqk.com/Wechat/', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, }); 阅读全文
posted @ 2017-04-27 16:45 BlueSky1024 阅读(1639) 评论(0) 推荐(0)
摘要: <div class="swiper-container2"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="swiper-slide-img">4</div> <div class="swiper-slide 阅读全文
posted @ 2017-04-11 17:41 BlueSky1024 阅读(1088) 评论(0) 推荐(0)
摘要: http://cn.vuejs.org/v2/guide/routing.html#官方路由 https://unpkg.com/vue-router@2.3.1/dist/vue-router.js 阅读全文
posted @ 2017-04-05 11:55 BlueSky1024 阅读(318) 评论(0) 推荐(0)
摘要: 分为4个步骤: 1. 当发送一个 URL 请求时,不管这个 URL 是 Web 页面的 URL 还是 Web 页面上每个资源的 URL,浏览器都会开启一个线程来处理这个请求,同时在远程 DNS 服务器上启动一个 DNS 查询。这能使浏览器获得请求对应的 IP 地址。 2. 浏览器与远程 Web 服务 阅读全文
posted @ 2017-03-09 22:21 BlueSky1024 阅读(303) 评论(0) 推荐(0)
摘要: body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padd 阅读全文
posted @ 2017-03-09 22:12 BlueSky1024 阅读(205) 评论(0) 推荐(0)
摘要: // 创建cookiefunction setCookie(name, value, expires, path, domain, secure) { var cookieText = encodeURIComponent(name) + '=' + encodeURIComponent(value 阅读全文
posted @ 2017-03-04 23:41 BlueSky1024 阅读(160) 评论(0) 推荐(0)
摘要: 100 Continue 继续,一般在发送post请求时,已发送了http header之后服务端将返回此信息,表示确认,之后发送具体参数信息 200 OK 正常返回信息 201 Created 请求成功并且服务器创建了新的资源 202 Accepted 服务器已接受请求,但尚未处理 301 Mov 阅读全文
posted @ 2017-03-04 23:38 BlueSky1024 阅读(105) 评论(0) 推荐(0)