一, 兄弟组件间联动 1. 点击城市字母,左侧对应显示 给遍历的 字母 添加一个点击事件: Alphabet.vue 在 父组件City.vue 中,监听 然后转发给子CityList组件: CityList组件,监听: 2. 拖动城市字母表,左侧城市对应滚动 给Alphabet.vue 字母列表绑 ...
分类:
移动开发 时间:
2019-02-26 17:22:05
阅读次数:
272
1.安装 lfs: git lfs install 2.跟踪大文件:git lfs track "file.suffix" 3.添加配置文件:git add .gitattributes 之后正常提交,不过可能会遇到这个问题: Remote "origin" does not support the ...
分类:
Web程序 时间:
2019-02-25 13:32:17
阅读次数:
475
44. Wildcard Matching Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'. The matching shou ...
分类:
Web程序 时间:
2019-02-24 00:52:11
阅读次数:
234
概述 为了确保分布式锁可用,我们至少要确保锁的实现同时满足以下四个条件: 互斥性:在任意时刻,只有一个客户端能持有锁。 不会发生死锁:即使有一个客户端在持有锁的期间崩溃而没有主动解锁,也能保证后续其他客户端能加锁。 容错性:只要大部分的Redis节点正常运行,客户端就可以加锁和解锁。 一致性:加锁和... ...
分类:
其他好文 时间:
2019-02-22 00:58:59
阅读次数:
200
结果为:显然,combinations方法重点在组合,permutations方法重在排列。还有就是,combinations和permutations返回的是对象地址,原因是在python3里面,返回值已经不再是list,而是iterators(迭代器), 所以想要使用,只用将iterator 转 ...
分类:
编程语言 时间:
2019-02-21 15:53:37
阅读次数:
461
原文地址:https://segmentfault.com/a/1190000015107942 HTML code: CSS code: ...
分类:
Web程序 时间:
2019-02-21 00:21:45
阅读次数:
192
Difficulty: Easy Problem You are given an array of strings. Two strings and are special equivalent if after any number of moves , S == T. A move consi ...
分类:
其他好文 时间:
2019-02-19 23:36:11
阅读次数:
283
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2019-02-18 01:20:29
阅读次数:
163
一、场景描述 在实际开发过程中经常会遇到一些有时效性数据的业务场景,比如订单支付处理超时提醒。当用户在商城上进行下单支付,我们假设如果8小时没有进行支付,那么就后台自动对该笔交易的状态修改为订单关闭取消,同时给用户发送一份邮件提醒。那么我们应用程序如何实现这样的需求场景呢?可能大家都会想到的是最简单 ...
题目: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letter ...
分类:
其他好文 时间:
2019-02-16 19:25:38
阅读次数:
173