摘要: 首先你要了解设计模式,了解备忘录模式,如果不了解那就先去了解吧. class Cache { // 中间对象 constructor(json) { this.json = json } getJson() { return this.json } } class CacheList { // 缓存 阅读全文
posted @ 2019-08-24 20:05 国服第一李师师 阅读(228) 评论(1) 推荐(0) 编辑