上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 186 下一页
摘要: eval is not a function 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: for (const k in v){ const a=[11,22,33,44]for(let i in a ){console.log(i)i=i+1}console.log(' ')for(const i in a ){console.log(i)i=i+1} VM64:3 0VM64:3 1 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 爬虫站点的历史入库数据,对入库数据的无外网处理,幂等操作;反之,不幂等操作 阅读全文
posted @ 2018-09-10 10:30 papering 阅读(227) 评论(0) 推荐(0) 编辑
摘要: vdso(7) - Linux manual page http://man7.org/linux/man-pages/man7/vdso.7.html NAME | SYNOPSIS | DESCRIPTION | NOTES | ARCHITECTURE-SPECIFIC NOTES | SEE 阅读全文
posted @ 2018-09-10 09:38 papering 阅读(275) 评论(0) 推荐(0) 编辑
摘要: @input 阅读全文
posted @ 2018-09-09 22:01 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Console Standard https://console.spec.whatwg.org/#log File an issue about the selected text Console Living Standard — Last Updated 21 July 2018 Partic 阅读全文
posted @ 2018-09-09 17:07 papering 阅读(236) 评论(0) 推荐(0) 编辑
摘要: wepy 实现 用户名登录与短信验证码登录 阅读全文
posted @ 2018-09-09 16:59 papering 阅读(356) 评论(0) 推荐(0) 编辑
摘要: wepy/packages/wepy-web/src/helper/device.js https://github.com/Tencent/wepy/blob/bd0003dca2bfb9581134e1b05d4aa1d80fc53858/packages/wepy-web/src/helper 阅读全文
posted @ 2018-09-09 16:57 papering 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 【最近30天】消费总金额{{apiRes.RecentConsumeTotal.consume}}币,充值总金额{{apiRes['RecentConsumeTotal']['recharge']}}币 【当前】冻结金额{{apiRes.AccountBalance['1'].freeze}}币,当前余额{{apiRes.Acco... 阅读全文
posted @ 2018-09-09 16:55 papering 阅读(211) 评论(0) 推荐(0) 编辑
摘要: https://github.com/axios/axios Features Make XMLHttpRequests from the browser Make http requests from node.js Supports the Promise API Intercept reque 阅读全文
posted @ 2018-09-09 16:52 papering 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 是小程序实例化后 读入内存 还是每次调用从文件系统读取 https://github.com/Tencent/wepy/blob/bd0003dca2bfb9581134e1b05d4aa1d80fc53858/packages/wepy-web/src/wx.js 数据缓存 · 小程序 https 阅读全文
posted @ 2018-09-09 16:38 papering 阅读(490) 评论(0) 推荐(0) 编辑
摘要: getStorageSync 在程序运行中是在内存 还是去文件系统读取? const UID = this.$parent.UID wx.getStorageSync('UID') 性能的差异 const UID = this.$parent.UID wx.getStorageSync('UID') 阅读全文
posted @ 2018-09-09 15:02 papering 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 运行机制 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/framework/operating-mechanism.html?search-key=reLaunch 运行机制 小程序启动会有两种情况,一种是「冷启动」,一种是「热启动」。 阅读全文
posted @ 2018-09-09 14:03 papering 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: 登录成功后的获取的帐号的基础资料的本地存储和内存访问 本地存储 下次无需使用帐号密码 内存访问 已经登录状态后,对数据的快速读取 阅读全文
posted @ 2018-09-09 12:16 papering 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 注册页面 | 微信开放文档 https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page.html Page(Object object) | 微信开放文档 https://developers.weixin. 阅读全文
posted @ 2018-09-09 12:08 papering 阅读(1646) 评论(0) 推荐(0) 编辑
摘要: 每个微信小程序都可以有自己的本地缓存 数据缓存 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/api/data.html 每个微信小程序都可以有自己的本地缓存,可以通过 wx.setStorage(wx.setStorageSync)、 阅读全文
posted @ 2018-09-09 09:58 papering 阅读(400) 评论(0) 推荐(0) 编辑
摘要: const isMobilePhoneNum = (params) => { const areaCode = params.areaCode || 'cn' const str = params.str switch (areaCode) { case 'de': break default: case 'cn': const ... 阅读全文
posted @ 2018-09-08 23:46 papering 阅读(186) 评论(0) 推荐(0) 编辑
摘要: wx.getUpdateManager() 基础库 1.9.90 开始支持,低版本需做兼容处理。 获取全局唯一的版本更新管理器,用于管理小程序更新。 关于小程序的更新机制,可以查看 运行机制 文档。 updateManager updateManager 对象的方法列表: 注: 检查更新操作由微信在 阅读全文
posted @ 2018-09-08 18:48 papering 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 网络状态 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxonnetworkstatuschangecallback 和声明的位置无关,一次声明,整个小程序 都在使用 所以放到 app.wpy? 1、在 阅读全文
posted @ 2018-09-08 17:37 papering 阅读(4814) 评论(1) 推荐(0) 编辑
摘要: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions D:\GPUGO\MP\wepy\mpBMCwepy\src\utils\wxRequest.js wepy bui 阅读全文
posted @ 2018-09-08 16:39 papering 阅读(224) 评论(0) 推荐(0) 编辑
摘要: const f =()=>{ console.log(this) let a=5 console.log(this) console.log(this) this.ak =3} f() let a ={} a['k'] =3 阅读全文
posted @ 2018-09-08 15:54 papering 阅读(316) 评论(0) 推荐(0) 编辑
摘要: const a = {}undefineda.j undefinedtrue 阅读全文
posted @ 2018-09-08 12:06 papering 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://github.com/babel/babel babylon - npm https://www.npmjs.com/package/babylon Babel is a compiler for writing next generation JavaScript. https:/ 阅读全文
posted @ 2018-09-08 10:35 papering 阅读(167) 评论(0) 推荐(0) 编辑
摘要: <script> import wepy from 'wepy' import api from '../api/api' import util from '../utils/util' export default class userLogin extends wepy.page { conf 阅读全文
posted @ 2018-09-07 19:53 papering 阅读(166) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE `TEST` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'g3用户ID', `order_no` varchar( 阅读全文
posted @ 2018-09-07 18:06 papering 阅读(324) 评论(0) 推荐(0) 编辑
摘要: curl -d "keyword=牛" http://api.com/path/index curl模拟http发送get或post接口测试 - 一生守候 - 博客园 https://www.cnblogs.com/sunshine2016/p/6015976.html 阅读全文
posted @ 2018-09-07 15:32 papering 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: t 阅读全文
posted @ 2018-09-07 11:38 papering 阅读(436) 评论(0) 推荐(0) 编辑
摘要: wepyjs - 小程序组件化开发框架 https://tencent.github.io/wepy/document.html#/?id=wepy%e9%a1%b9%e7%9b%ae%e7%9a%84%e5%88%9b%e5%bb%ba%e4%b8%8e%e4%bd%bf%e7%94%a8 omp 阅读全文
posted @ 2018-09-07 09:51 papering 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 中国领先的SaaS级智能营销云平台 http://www.71360.com/ 网站|网页|网络_建设_设计_搭建_制作_优化_推广_排名_公司_seo-启源信息 http://7s-seo.com/#page3 阅读全文
posted @ 2018-09-06 17:10 papering 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 微信小程序设计指南 · 小程序 https://developers.weixin.qq.com/miniprogram/design/index.html 阅读全文
posted @ 2018-09-06 16:10 papering 阅读(218) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Tencent/wepy/wiki/wepy项目中使用async-await 阅读全文
posted @ 2018-09-06 16:07 papering 阅读(430) 评论(0) 推荐(0) 编辑
摘要: http://ceph.org.cn/2018/06/05/redhat-ceph存储-《面向生产环境的ceph-对象网关指南》/ Ceph:一个 Linux PB 级分布式文件系统 https://www.ibm.com/developerworks/cn/linux/l-ceph/index.h 阅读全文
posted @ 2018-09-06 10:11 papering 阅读(252) 评论(0) 推荐(0) 编辑
摘要: XSKY星辰天合 | 产品概览 https://www.xsky.com/products/ 软件架构 XSKY提供多种接口协议,支持多种应用与虚拟化,存储逻辑与特定硬件解锁。 硬件架构 XSKY基于软件定义的存储解决方案,具备灵活的部署模式,满足不同业务应用的需求。 阅读全文
posted @ 2018-09-06 10:05 papering 阅读(598) 评论(0) 推荐(0) 编辑
摘要: Classes - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes Hoisting An important difference between function 阅读全文
posted @ 2018-09-06 09:57 papering 阅读(184) 评论(0) 推荐(0) 编辑
摘要: let a =3let b = {}while(a){ eval('b.tag_'+(a-1)+'='+a*a) a--} {tag_2: 9, tag_1: 4, tag_0: 1} let a =3let b = {}while(a){eval('b.tag_'+(a-1))a--} {} c. 阅读全文
posted @ 2018-09-06 01:02 papering 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: const tmpTotime = function (tmp) { const t = function (i) { return i < 10 ? '0' + i : i } const date = new Date(tmp * 1000) const Y = date.getFullYear 阅读全文
posted @ 2018-09-06 00:10 papering 阅读(246) 评论(0) 推荐(0) 编辑
摘要: static - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/static The static keyword defines a static method 阅读全文
posted @ 2018-09-05 23:34 papering 阅读(277) 评论(0) 推荐(0) 编辑
摘要: WePY根据环境变量来改变运行时的参数 · Tencent/wepy Wiki https://github.com/Tencent/wepy/wiki/WePY%E6%A0%B9%E6%8D%AE%E7%8E%AF%E5%A2%83%E5%8F%98%E9%87%8F%E6%9D%A5%E6%94 阅读全文
posted @ 2018-09-05 17:51 papering 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: Go语言函数类型实现接口——把函数作为接口来调用 http://c.biancheng.net/view/58.html 函数和其他类型一样都属于“一等公民”,其他类型能够实现接口,函数也可以,本节将对结构体与函数实现接口的过程进行对比。首先给出本节完整的代码: package main impor 阅读全文
posted @ 2018-09-05 17:49 papering 阅读(937) 评论(0) 推荐(0) 编辑
摘要: 为什么需要onRoute函数? · Tencent/wepy Wiki https://github.com/Tencent/wepy/wiki/%E4%B8%BA%E4%BB%80%E4%B9%88%E9%9C%80%E8%A6%81onRoute%E5%87%BD%E6%95%B0%3F 为什么 阅读全文
posted @ 2018-09-05 17:48 papering 阅读(308) 评论(0) 推荐(0) 编辑
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 186 下一页