-
Notifications
You must be signed in to change notification settings - Fork 1
/
atom.xml
426 lines (254 loc) · 24.4 KB
/
atom.xml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>哼哼哈嘻</title>
<icon>https://www.gravatar.com/avatar/76d29697754f8c598230ae589229d075</icon>
<subtitle>勿忘初心,保持平常心,从心出发</subtitle>
<link href="/atom.xml" rel="self"/>
<link href="https://damonlau27.github.io/"/>
<updated>2021-01-13T05:46:32.000Z</updated>
<id>https://damonlau27.github.io/</id>
<author>
<name>留叶</name>
<email>137042952@qq.com</email>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>React Testing</title>
<link href="https://damonlau27.github.io/2021/01/13/React-Testing/"/>
<id>https://damonlau27.github.io/2021/01/13/React-Testing/</id>
<published>2021-01-13T05:46:32.000Z</published>
<updated>2021-01-13T05:46:32.000Z</updated>
<summary type="html">
<h2 id="描述"><a href="#描述" class="headerlink" title="描述"></a>描述</h2><h4 id="Tools"><a href="#Tools" class="headerlink" title="Tools"></a>Tools</h4><ul>
<li><a href="https://facebook.github.io/jest/" target="_blank" rel="noopener">Jest</a></li>
<li><a href="https://testing-library.com/react" target="_blank" rel="noopener">React Testing Library</a></li>
</ul>
<h4 id="总步骤"><a href="#总步骤" class="headerlink" title="总步骤"></a>总步骤</h4><ol>
<li>通过<code>render</code>等渲染函数,渲染一个组件</li>
<li><code>Queries</code>等查询、获取组件</li>
<li><code>Expect</code>断言渲染结果、状态值</li>
</ol>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
<category term="React" scheme="https://damonlau27.github.io/tags/React/"/>
</entry>
<entry>
<title>Hooks Redux</title>
<link href="https://damonlau27.github.io/2021/01/13/Hooks-Redux/"/>
<id>https://damonlau27.github.io/2021/01/13/Hooks-Redux/</id>
<published>2021-01-13T03:18:41.000Z</published>
<updated>2021-01-13T03:18:41.000Z</updated>
<summary type="html">
<h2 id="Top-Level-File"><a href="#Top-Level-File" class="headerlink" title="Top Level File"></a>Top Level File</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br></pre></td><td class="code"><pre><span class="line">import &#123; Provider &#125; from &#39;react-redux&#39;;</span><br><span class="line">import store from &#39;&lt;path of store file&gt;&#39;;</span><br><span class="line"></span><br><span class="line">export type RootState &#x3D; ReturnType&lt;typeof store.getState&gt;;</span><br><span class="line"></span><br><span class="line">&lt;Provider store&#x3D;&#123;store&#125;&gt;</span><br><span class="line"> &lt;App &#x2F;&gt;</span><br><span class="line">&lt;&#x2F;Provider&gt;</span><br></pre></td></tr></table></figure>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
<category term="Redux" scheme="https://damonlau27.github.io/tags/Redux/"/>
</entry>
<entry>
<title>jsx react-jsx error</title>
<link href="https://damonlau27.github.io/2020/12/23/jsx-react-jsx-error/"/>
<id>https://damonlau27.github.io/2020/12/23/jsx-react-jsx-error/</id>
<published>2020-12-23T08:15:47.000Z</published>
<updated>2020-12-23T08:15:47.000Z</updated>
<summary type="html">
<h1 id="背景"><a href="#背景" class="headerlink" title="背景"></a>背景</h1><p>通过<code>yarn create react-app antd-demo-ts --template typescript</code>创建项目,使用VSCode打开项目提示错误:</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>react+typescript+jest踩坑</title>
<link href="https://damonlau27.github.io/2020/04/11/react-typescript-jest%E8%B8%A9%E5%9D%91/"/>
<id>https://damonlau27.github.io/2020/04/11/react-typescript-jest%E8%B8%A9%E5%9D%91/</id>
<published>2020-04-11T13:08:16.000Z</published>
<updated>2020-04-11T13:08:16.000Z</updated>
<summary type="html">
<h2 id="使用Typescript和一些配置"><a href="#使用Typescript和一些配置" class="headerlink" title="使用Typescript和一些配置"></a>使用Typescript和一些配置</h2><h4 id="package-json"><a href="#package-json" class="headerlink" title="package.json"></a>package.json</h4><p><code>babelConfig</code> 用于告诉 ts-jest 是否使用 babel 。false不使用,true会查找 babel 配置文件,如 babel.config.json ,也可以配置某个具体的值。</p>
<p><code>identity-obj-proxy</code>用于jest mock css module</p>
<p>tsx 使用 babel-jest transform 遇到无法解析,后来改为使用 ts-jest 能解决问题</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>《滚雪球--巴菲特和他的财富人生》</title>
<link href="https://damonlau27.github.io/2020/02/15/%E3%80%8A%E6%BB%9A%E9%9B%AA%E7%90%83-%E5%B7%B4%E8%8F%B2%E7%89%B9%E5%92%8C%E4%BB%96%E7%9A%84%E8%B4%A2%E5%AF%8C%E4%BA%BA%E7%94%9F%E3%80%8B/"/>
<id>https://damonlau27.github.io/2020/02/15/%E3%80%8A%E6%BB%9A%E9%9B%AA%E7%90%83-%E5%B7%B4%E8%8F%B2%E7%89%B9%E5%92%8C%E4%BB%96%E7%9A%84%E8%B4%A2%E5%AF%8C%E4%BA%BA%E7%94%9F%E3%80%8B/</id>
<published>2020-02-15T13:49:47.000Z</published>
<updated>2020-02-15T13:49:47.000Z</updated>
<summary type="html">
<h2 id="巴拉巴拉"><a href="#巴拉巴拉" class="headerlink" title="巴拉巴拉"></a>巴拉巴拉</h2><p>这是一本巴菲特的传记,但不是那种作者连李嘉诚都没见过就写出的李嘉诚是怎么白手起家的传记。这本书很多是由巴菲特亲自口述,以及作者亲身观察巴菲特的工作,生活,他的朋友等,最后整理出来的。</p>
</summary>
<category term="电影阅读" scheme="https://damonlau27.github.io/categories/%E7%94%B5%E5%BD%B1%E9%98%85%E8%AF%BB/"/>
<category term="读书" scheme="https://damonlau27.github.io/tags/%E8%AF%BB%E4%B9%A6/"/>
</entry>
<entry>
<title>为什么使用reflect</title>
<link href="https://damonlau27.github.io/2020/01/09/%E4%B8%BA%E4%BB%80%E4%B9%88%E4%BD%BF%E7%94%A8reflect/"/>
<id>https://damonlau27.github.io/2020/01/09/%E4%B8%BA%E4%BB%80%E4%B9%88%E4%BD%BF%E7%94%A8reflect/</id>
<published>2020-01-09T12:41:13.000Z</published>
<updated>2020-01-09T12:41:13.000Z</updated>
<summary type="html">
<h2 id="前情"><a href="#前情" class="headerlink" title="前情"></a>前情</h2><p>Golang是一门静态语言,也就决定了一般情况下不能在程序运行中改变其行为。好在Golang也是一门面向反射的语言,通过反射机制,可以弥补这部分不足。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
<category term="Golang" scheme="https://damonlau27.github.io/tags/Golang/"/>
</entry>
<entry>
<title>《正见》</title>
<link href="https://damonlau27.github.io/2020/01/08/%E3%80%8A%E6%AD%A3%E8%A7%81%E3%80%8B/"/>
<id>https://damonlau27.github.io/2020/01/08/%E3%80%8A%E6%AD%A3%E8%A7%81%E3%80%8B/</id>
<published>2020-01-08T14:04:02.000Z</published>
<updated>2020-01-08T14:04:02.000Z</updated>
<summary type="html">
<h2 id="说些什么"><a href="#说些什么" class="headerlink" title="说些什么"></a>说些什么</h2><p>大佬分享的一本书,也许大概可能是自己境界不够,看得有点绕,看完有点云里雾里。</p>
</summary>
<category term="电影阅读" scheme="https://damonlau27.github.io/categories/%E7%94%B5%E5%BD%B1%E9%98%85%E8%AF%BB/"/>
<category term="读书" scheme="https://damonlau27.github.io/tags/%E8%AF%BB%E4%B9%A6/"/>
</entry>
<entry>
<title>为什么要用Context(上下文)</title>
<link href="https://damonlau27.github.io/2020/01/01/Golang-Context/"/>
<id>https://damonlau27.github.io/2020/01/01/Golang-Context/</id>
<published>2020-01-01T10:30:54.000Z</published>
<updated>2020-01-01T10:30:54.000Z</updated>
<summary type="html">
<h2 id="写在前面"><a href="#写在前面" class="headerlink" title="写在前面"></a>写在前面</h2><p>相比在参数中传递用于控制流程的自定义管道变量,<code>Context</code>可以更方便地串联、管理多个<code>Goroutine</code>,在大型项目中发挥着重要的作用。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
<category term="Golang" scheme="https://damonlau27.github.io/tags/Golang/"/>
</entry>
<entry>
<title>C++碎碎念</title>
<link href="https://damonlau27.github.io/2019/11/25/C-%E7%A2%8E%E7%A2%8E%E5%BF%B5/"/>
<id>https://damonlau27.github.io/2019/11/25/C-%E7%A2%8E%E7%A2%8E%E5%BF%B5/</id>
<published>2019-11-25T10:22:52.000Z</published>
<updated>2019-11-25T10:22:52.000Z</updated>
<summary type="html">
<h3 id="头文件中ifndef-define-endif的作用"><a href="#头文件中ifndef-define-endif的作用" class="headerlink" title="头文件中ifndef/define/endif的作用"></a>头文件中<code>ifndef/define/endif</code>的作用</h3><p>保证即使头文件被包含多次,也只定义一次,起到预编译保护作用。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>《简单实现自己的监听器模式》</title>
<link href="https://damonlau27.github.io/2019/11/25/%E3%80%8A%E7%AE%80%E5%8D%95%E5%AE%9E%E7%8E%B0%E8%87%AA%E5%B7%B1%E7%9A%84%E7%9B%91%E5%90%AC%E5%99%A8%E6%A8%A1%E5%BC%8F%E3%80%8B/"/>
<id>https://damonlau27.github.io/2019/11/25/%E3%80%8A%E7%AE%80%E5%8D%95%E5%AE%9E%E7%8E%B0%E8%87%AA%E5%B7%B1%E7%9A%84%E7%9B%91%E5%90%AC%E5%99%A8%E6%A8%A1%E5%BC%8F%E3%80%8B/</id>
<published>2019-11-25T04:57:09.000Z</published>
<updated>2019-11-25T04:57:09.000Z</updated>
<summary type="html">
<p>实现监听器模式,不使用<code>EventEmitter</code></p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>Object.create(null)和{}</title>
<link href="https://damonlau27.github.io/2019/11/25/Object-create-null-%E5%92%8C/"/>
<id>https://damonlau27.github.io/2019/11/25/Object-create-null-%E5%92%8C/</id>
<published>2019-11-25T03:10:00.000Z</published>
<updated>2019-11-25T03:10:00.000Z</updated>
<summary type="html">
<p><code>let a = {}</code>和<code>let b = Object.create(null)</code>有什么区别呢?</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>js实现继承</title>
<link href="https://damonlau27.github.io/2019/11/24/js%E5%AE%9E%E7%8E%B0%E7%BB%A7%E6%89%BF/"/>
<id>https://damonlau27.github.io/2019/11/24/js%E5%AE%9E%E7%8E%B0%E7%BB%A7%E6%89%BF/</id>
<published>2019-11-24T09:18:23.000Z</published>
<updated>2019-11-24T09:18:23.000Z</updated>
<summary type="html">
<h2 id="一、js继承问题"><a href="#一、js继承问题" class="headerlink" title="一、js继承问题"></a>一、<code>js</code>继承问题</h2><p><code>es6</code>引入了<code>class</code>和<code>extends</code>,从而可以像<code>c++</code>那样理解继承,但本质上这只是一个语法糖。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>js的bind函数</title>
<link href="https://damonlau27.github.io/2019/11/23/js%E7%9A%84bind%E5%87%BD%E6%95%B0/"/>
<id>https://damonlau27.github.io/2019/11/23/js%E7%9A%84bind%E5%87%BD%E6%95%B0/</id>
<published>2019-11-23T10:24:05.000Z</published>
<updated>2019-11-23T10:24:05.000Z</updated>
<summary type="html">
<h2 id="概述"><a href="#概述" class="headerlink" title="概述"></a>概述</h2><p>由<code>Function.prototype.bind()</code>,所以<code>bind()</code>是函数或方法的一个属性。<code>bind()</code>将创建一个新的函数,调用<code>bind()</code>的时候,新函数的<code>this</code>被<code>bind()</code>的第一个参数指定,<code>bind()</code>的其余参数将作为新函数的参数供调用时使用。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>js的with关键字</title>
<link href="https://damonlau27.github.io/2019/11/23/js%E7%9A%84with%E5%85%B3%E9%94%AE%E5%AD%97/"/>
<id>https://damonlau27.github.io/2019/11/23/js%E7%9A%84with%E5%85%B3%E9%94%AE%E5%AD%97/</id>
<published>2019-11-23T07:22:39.000Z</published>
<updated>2019-11-23T07:22:39.000Z</updated>
<summary type="html">
<h2 id="使用"><a href="#使用" class="headerlink" title="使用"></a>使用</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br></pre></td><td class="code"><pre><span class="line">let obj &#x3D; &#123;</span><br><span class="line"> a: &#39;aaa&#39;,</span><br><span class="line"> b: &#39;bbb&#39;,</span><br><span class="line"> c: &#39;ccc&#39;</span><br><span class="line">&#125;</span><br><span class="line">console.log(obj.a, obj.b, obj.c);</span><br><span class="line"></span><br><span class="line">&#x2F;&#x2F; 使用 with</span><br><span class="line">with (obj) &#123;</span><br><span class="line"> console.log(a, b, c);</span><br><span class="line">&#125;</span><br></pre></td></tr></table></figure>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>JS的call方法</title>
<link href="https://damonlau27.github.io/2019/11/23/JS%E7%9A%84call%E6%96%B9%E6%B3%95/"/>
<id>https://damonlau27.github.io/2019/11/23/JS%E7%9A%84call%E6%96%B9%E6%B3%95/</id>
<published>2019-11-22T17:39:43.000Z</published>
<updated>2019-11-22T17:39:43.000Z</updated>
<summary type="html">
<h2 id="概述"><a href="#概述" class="headerlink" title="概述"></a>概述</h2><p><code>foo.call(this, args...)</code>,指明<code>foo</code>函数或方法的<code>this</code>和参数,然后运行<code>foo</code>。</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>JS原型和原型链</title>
<link href="https://damonlau27.github.io/2019/11/22/JS%E5%8E%9F%E5%9E%8B%E5%92%8C%E5%8E%9F%E5%9E%8B%E9%93%BE/"/>
<id>https://damonlau27.github.io/2019/11/22/JS%E5%8E%9F%E5%9E%8B%E5%92%8C%E5%8E%9F%E5%9E%8B%E9%93%BE/</id>
<published>2019-11-22T15:23:07.000Z</published>
<updated>2019-11-22T15:23:07.000Z</updated>
<summary type="html">
<h2 id="背景"><a href="#背景" class="headerlink" title="背景"></a>背景</h2><p>有时代码敲得再多,项目做的再多,面试时还是会被一些简单的问题难倒</p>
</summary>
<category term="攻城狮那些事儿" scheme="https://damonlau27.github.io/categories/%E6%94%BB%E5%9F%8E%E7%8B%AE%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/"/>
</entry>
<entry>
<title>《伟大的博弈》读后</title>
<link href="https://damonlau27.github.io/2019/11/15/%E3%80%8A%E4%BC%9F%E5%A4%A7%E7%9A%84%E5%8D%9A%E5%BC%88%E3%80%8B%E8%AF%BB%E5%90%8E/"/>
<id>https://damonlau27.github.io/2019/11/15/%E3%80%8A%E4%BC%9F%E5%A4%A7%E7%9A%84%E5%8D%9A%E5%BC%88%E3%80%8B%E8%AF%BB%E5%90%8E/</id>
<published>2019-11-15T13:31:47.000Z</published>
<updated>2019-11-15T13:31:47.000Z</updated>
<summary type="html">
<p>《伟大的博弈》讲的是华尔街的历史,讲述了华尔街从无到有,讲述了华尔街经历的战乱、灾难、成长,讲述了资本市场的腥风血雨、跌宕起伏。长投学堂的小熊老师说看完这本书,你对我们A股股市的波动就不会感到惊讶,因为和华尔街相比,A股的波动真的算不上波动了。</p>
</summary>
<category term="电影阅读" scheme="https://damonlau27.github.io/categories/%E7%94%B5%E5%BD%B1%E9%98%85%E8%AF%BB/"/>
<category term="读书" scheme="https://damonlau27.github.io/tags/%E8%AF%BB%E4%B9%A6/"/>
</entry>
<entry>
<title>《聪明的投资者》读后</title>
<link href="https://damonlau27.github.io/2019/11/10/%E3%80%8A%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E3%80%8B%E8%AF%BB%E5%90%8E/"/>
<id>https://damonlau27.github.io/2019/11/10/%E3%80%8A%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E3%80%8B%E8%AF%BB%E5%90%8E/</id>
<published>2019-11-10T14:30:58.000Z</published>
<updated>2019-11-10T14:30:58.000Z</updated>
<summary type="html">
<p>《聪明的投资者》是巴菲特的老师格雷厄姆出的一本书,巴菲特据说很少向别人推荐什么书,可能是很多书不能入他老人家的法眼吧,却唯独这一本是他非常推崇的。这本书也是长投学堂的小熊老师说读了很多次的书。</p>
</summary>
<category term="电影阅读" scheme="https://damonlau27.github.io/categories/%E7%94%B5%E5%BD%B1%E9%98%85%E8%AF%BB/"/>
<category term="读书" scheme="https://damonlau27.github.io/tags/%E8%AF%BB%E4%B9%A6/"/>
</entry>
<entry>
<title>scatter交易missing required accounts</title>
<link href="https://damonlau27.github.io/2019/02/18/scatter%E4%BA%A4%E6%98%93missing-required-accounts/"/>
<id>https://damonlau27.github.io/2019/02/18/scatter%E4%BA%A4%E6%98%93missing-required-accounts/</id>
<published>2019-02-18T07:39:23.000Z</published>
<updated>2019-02-18T07:39:23.000Z</updated>
<summary type="html">
<h2 id="概述:"><a href="#概述:" class="headerlink" title="概述:"></a>概述:</h2><p>使用<code>scatter js sdk</code>发起一笔交易,请求<code>scatter</code>确认时,出现如下错误提示:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">Missing required accounts, repull the identity</span><br></pre></td></tr></table></figure>
</summary>
<category term="eosio" scheme="https://damonlau27.github.io/tags/eosio/"/>
</entry>
<entry>
<title>eosio.token的transfer的memo长度</title>
<link href="https://damonlau27.github.io/2019/02/18/eosio-token%E7%9A%84transfer%E7%9A%84memo%E9%95%BF%E5%BA%A6/"/>
<id>https://damonlau27.github.io/2019/02/18/eosio-token%E7%9A%84transfer%E7%9A%84memo%E9%95%BF%E5%BA%A6/</id>
<published>2019-02-18T07:07:12.000Z</published>
<updated>2019-02-18T07:07:12.000Z</updated>
<summary type="html">
<h2 id="概述:"><a href="#概述:" class="headerlink" title="概述:"></a>概述:</h2><p>平时我们进行 EOS 币转账的时候,<code>memo</code>最多可以填多少个汉字、多少个英文字符呢?</p>
</summary>
<category term="eosio" scheme="https://damonlau27.github.io/tags/eosio/"/>
</entry>
</feed>