shenghy / my-blog

我的博客系统
22 stars 8 forks source link

[Vssue]redux-base #38

Open shenghy opened 5 years ago

shenghy commented 5 years ago

https://jspang.com/posts/2019/06/20/redux.html

ZTH520 commented 5 years ago

前排打卡

huanggengzhong commented 5 years ago

支持

konglingwu commented 5 years ago

老司机最后开车来了急转弯,让我猝不及防

youwillbe commented 5 years ago

墙裂推荐redux-observable

Angelxiaotao commented 5 years ago

我怎么闻到了车的味道

y449329998 commented 5 years ago

和mobx哪个好用?

Harukite commented 5 years ago

支持

jgsrty commented 5 years ago

问下胖哥,大概什么时候开始出RN的视频呢?

shenghy commented 5 years ago

@huanggengzhong

支持

感谢你的支持

shenghy commented 5 years ago

@konglingwu

老司机最后开车来了急转弯,让我猝不及防

以后会减少开车,回到知识本质上来

shenghy commented 5 years ago

@jgsrty

问下胖哥,大概什么时候开始出RN的视频呢?

这个要稍微等待一些时间,不过会出的。

toby20001 commented 5 years ago

react-router讲吗?

ZhangwenGmi commented 5 years ago

胖哥,怎么近期的都没有视频了

streamBamboo commented 5 years ago

坐等视频更新,原本一直就想学会redux,但是看见网上的课程就没心情学下去了,一直以来都是在看胖哥的视频,胖哥出品必属精品,所以呢,rudex我怎么可能放过呢?胖哥加油

Splendid-life commented 5 years ago

胖哥由用过rematch吗

shenghy commented 5 years ago

@ZhangwenGmi

胖哥,怎么近期的都没有视频了

视频一直在更新,可能是你浏览器的问题,请检查你的浏览器。

shenghy commented 5 years ago

@streamBamboo

坐等视频更新,原本一直就想学会redux,但是看见网上的课程就没心情学下去了,一直以来都是在看胖哥的视频,胖哥出品必属精品,所以呢,rudex我怎么可能放过呢?胖哥加油

谢谢你的鼓励,我会尽快更新视频,也会兼顾视频的趣味性,减少学习难度。

seolhw commented 5 years ago

胖哥,你好,感谢你的react免费视频 但我有一点小疑问,这样使用ES6的class 定义方法应该使用写在constructor内部,和定义属性放在一起,而不是写在外面和钩子、rander同级,这样既语义明确(属性和方法都在rander中使用,何故区别对待),同时也不必再另行绑定this。 并且如果觉得写在constructor内部不好看的话,还可以使用实例属性的新写法 传送门

seolhw commented 5 years ago

承接上一条评论,本想放图,结果展示不出来,只能放链接了 https://doc.lihuiwang.net/img/%E7%90%86%E8%A7%A3.png https://doc.lihuiwang.net/img/%E4%BC%98%E9%9B%85.png

wavesbig commented 5 years ago

胖哥你的文章跟好多都很相似 1.https://www.jianshu.com/p/fc7470992482 2.https://harry0071.github.io/2018/10/18/redux%E7%9A%84%E4%BD%BF%E7%94%A8/

swdcode commented 5 years ago

这是不是讲完应该讲Dvajs啊?

shenghy commented 5 years ago

@569202812

胖哥你的文章跟好多都很相似 1.https://www.jianshu.com/p/fc7470992482 2.https://harry0071.github.io/2018/10/18/redux%E7%9A%84%E4%BD%BF%E7%94%A8/

我是参考了一本《深入浅出React和Redux》的书,文章开头已经标明了哦,但是文章跟书也有很多不同,80%都加入了自己的理解和新的,适合于新手学习的流程。

我在视频中说过多次,我只是知识的搬运工,并不是知识的创造者。学程序和你小学的数学是一样的,知识都一样,要看怎么讲。如果每个老师讲的都不一样,那你学的知识不是乱了?如何保证正确那?

再比如阮大神的文章都是参看的英文文章和API吧,甚至《深入浅出React和Redux》这本书也是参照的API吧,ToDoList是官方实例...........

jtbss commented 5 years ago

车门已经焊死,大家别想跳车

技术胖讲的很好,之前看redux文字版教程根本看不懂,一听技术胖讲解完全理解了

jimorucheng commented 5 years ago

打卡学习

hejiaqian commented 5 years ago

p17代码有误:

#actionCreators.js文件
const data = res.data.data
const action = getListAction(data)
store.dispatch(action)
JustGogoing commented 5 years ago

请教个问题,我现在在actionCreator中进行数据请求,并且返回函数, 但是我需要根据返回的状态码进行不同的操作,但是在组件中接收到的是函数。该怎么处理呢?

//组件 const mapDispatch = (dispatch) => ({ subForm (form) { const action = actionCreators.registered(form) dispatch(action) } })

actioncreator.js export const registered = (form) => { return (dispatch) => { subRegistered(form).then(res => { if (res.code === '1') { dispatch(setInfo(res.data)) // 路由跳转 } else { // 返回错误信息 } }) } }

Splendid-life commented 5 years ago

能讲一下防抖吗,文本框输入,一直触发

wangcs-study commented 5 years ago

./node_modules/antd/es/_util/wave.js Module not found: Can't resolve 'css-animation/es/Event' in 'D:\jspang-react\demo02\node_modules\antd\es_util' 你好,我的项目总是报这个错误

ImSingee commented 5 years ago

对于讲 React-redux 之前的那个 To-do List 项目,因为已经封装好了 creator,因此其实可以在使用 mapDispatchToProps 时可以利用 bindActionCreators 甚至 Defining mapDispatchToProps As An Object 来很方便的实现 mapDispatchToProps。建议补充讲解一下这个知识点,很常用

chenqkhub commented 5 years ago

胖哥,这里的store,reduce是可以多个的么?不同的模块对应不同的store和reduce?

mraing commented 5 years ago

写了一大串,想提问来着,写着写着突然自己明白了😂,关于 redux-sage 这一块,真的有点绕啊,稍不留神就把自己绕晕了,半个小时敲代码,半天时间找 bug。要达到熟练运用的地步,感觉还有蛮远的距离。

谢谢胖老师带我们入门,非常感谢您😸

mraing commented 5 years ago

谢谢胖老师的良心课程,真的非常感谢。在工作中给了我很大的帮助

wqs2019 commented 5 years ago

胖哥真的很棒!跟着大佬学习准没错,感谢感谢

sogud commented 5 years ago

学到了,还有液体避孕喷液这样的操作👍

liqianglai commented 5 years ago

@胖哥 视频中的代码,有什么地方可以看到吗?

yuanfangCBC commented 5 years ago

react-redux讲的特别棒 瞬间懂了 感谢

surenjiangyong commented 5 years ago

我也来打卡一下,向大佬体格建议,每节课要是能单独分开就好了,这样就可以针对不同的章节提出问题,因为我初学redux,跟着代码敲到第五节就翻车了,各种报错

haiyangzhaoo commented 5 years ago

比网上一些鸡肋视频强多了 很有用 期待更新更多

i-coder-robot commented 5 years ago

胖神,请教一下 https://github.com/i-coder-robot/geek-aglie-manager-react/tree/master/src 我按您写的例子,自己写了一遍,目前参考到第9节,但是奇怪,数组可以增加到页面上,但是输入框的placeholder的值,不能清空,但是在reducer.js里已经加入newState.inputValue = '',不知道什么地方还有问题,请您帮忙看看什么问题导致的?

WXperia commented 4 years ago

花了3天的时间把胖哥的视频看完了,哈哈,不过最后懒得创建,花了点时间理解react-redux,直接修改前面19章的代码。什么thunk saga表示我全都要!