上一页 1 ··· 330 331 332 333 334 335 336 337 338 ··· 498 下一页
摘要: Epics can be unit-tested just like any other function in your application - they have a very specific set of inputs (the action$ stream) and the outpu 阅读全文
posted @ 2017-10-17 18:20 Zhentiw 阅读(220) 评论(0) 推荐(0)
摘要: With redux-observable, we have the power of RxJS at our disposal - this means tasks that would otherwise be complicated and imperative, become simple 阅读全文
posted @ 2017-10-16 00:30 Zhentiw 阅读(802) 评论(0) 推荐(0)
摘要: Imaging you are building a Tabs component. If looks like: You want to know which tab is clicked (actived). But you don't want this actived tab state b 阅读全文
posted @ 2017-10-13 19:06 Zhentiw 阅读(568) 评论(0) 推荐(0)
摘要: In this lesson we create a new Express web server app for handling file uploads and persisting them to the filesystem. We will walk through using the 阅读全文
posted @ 2017-10-12 23:52 Zhentiw 阅读(351) 评论(0) 推荐(0)
摘要: def myfunc(x, y, z): print(x, y, z) tuple_vec = (1, 0, 1) dict_vec = {'x': 1, 'y': 0, 'z': 1} >>> myfunc(*tuple_vec) 1, 0, 1 >>> myfunc(**dict_vec) 1, 0, 1 阅读全文
posted @ 2017-10-12 18:20 Zhentiw 阅读(260) 评论(0) 推荐(0)
摘要: The way to test router componet needs a little bit setup, first we need to create a "router-stubs.ts". This file is a helper file. The component we wa 阅读全文
posted @ 2017-10-12 15:48 Zhentiw 阅读(946) 评论(0) 推荐(0)
摘要: Both what "TestBed.get" & "injector" trying to do is get service for the test component. But there is some diffenece which determined when use which. 阅读全文
posted @ 2017-10-10 19:21 Zhentiw 阅读(1698) 评论(0) 推荐(0)
摘要: When you testing Component rendering, you often needs to call: For example: You can also set auto change detection: Add to providers: Tests wit auto c 阅读全文
posted @ 2017-10-10 16:51 Zhentiw 阅读(280) 评论(0) 推荐(0)
摘要: When using Ngrx, we need to know how to test the component which has Router injected. Component: One thing we can test just for component wihtout temp 阅读全文
posted @ 2017-10-10 15:54 Zhentiw 阅读(577) 评论(0) 推荐(0)
摘要: More detail check LInk. Render Prop vs HOC: HOC version for withMouse: Problems: Indirection. We still have the same problem with indirection that we 阅读全文
posted @ 2017-10-10 00:27 Zhentiw 阅读(303) 评论(0) 推荐(0)
上一页 1 ··· 330 331 332 333 334 335 336 337 338 ··· 498 下一页