shenghy / my-blog

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

[Vssue]new-react-base #32

Open shenghy opened 5 years ago

shenghy commented 5 years ago

https://jspang.com/posts/2019/05/04/new-react-base.html

shenghy commented 5 years ago

@XiongLongHui

胖哥,由于更新速度限制的原因,看您之前的老版本react视频效果好吗

老版本不要看了,跟现在工作有很多不同。

ziyotko commented 5 years ago

有空讲讲provider吧!!!

pangbiao0 commented 5 years ago

6666 胖哥 追随你的脚步 不断进步

xiaojia123456 commented 5 years ago

胖哥现在讲课的时候 偶尔也开一下车 活跃一下气氛啊 这讲课方式比其他的课程有趣的多啊 看完了 快快更新吧

xiaojia123456 commented 5 years ago

希望码云的账号也可以登录

shenghy commented 5 years ago

@ziyotko

有空讲讲provider吧!!!

好的,我学习一下。然后讲解。

shenghy commented 5 years ago

@pangbiao0

6666 胖哥 追随你的脚步 不断进步

好的一起加油。

li1232747 commented 5 years ago

胖哥能不用小姐姐做案例吗?昨天女朋友看到精油开背,问我是不是想去大宝剑了,现在膝盖还疼呢

shenghy commented 5 years ago

@li1232747

胖哥能不用小姐姐做案例吗?昨天女朋友看到精油开背,问我是不是想去大宝剑了,现在膝盖还疼呢

难道你不想去精油开背吗和躺式采耳吗?

liconner commented 5 years ago

技术胖,太棒了。。顶起

xiaojia123456 commented 5 years ago

希望快点讲 react-redux 方面的知识

shenghy commented 5 years ago

@xiaojia123456

希望快点讲 react-redux 方面的知识

后期会进行更新的。

zhenhua666 commented 5 years ago

好多错别字

zl612 commented 5 years ago

react 16.** 会讲新的生命周期 吗?

zl612 commented 5 years ago

什么时候讲讲react源码之类的 虚拟dom 深入浅出一点点

shenghy commented 5 years ago

@zhenhua666

好多错别字

以后会加强写作后的校对环境,感谢你提出了宝贵意见。

shenghy commented 5 years ago

@zl612

什么时候讲讲react源码之类的 虚拟dom 深入浅出一点点

虚拟Dom准备拿出一个单独文章来写写,这个只是入门,让不会的小伙伴更容易上手。

Diweikang commented 5 years ago

加入知识星球能添加你的微信嘛?

chen1366142688 commented 5 years ago

20&21为什么没有视频呢

pangbiao0 commented 5 years ago

开始、淡忘那 、羙丽的七夕 ``

别再抄送给我了..

------------------ 原始邮件 ------------------ 发件人: "Mike_chen"notifications@github.com; 发送时间: 2019年6月5日(星期三) 上午10:17 收件人: "shenghy/my-blog"my-blog@noreply.github.com; 抄送: "而过"474232287@qq.com;"Mention"mention@noreply.github.com; 主题: Re: [shenghy/my-blog] [Vssue]new-react-base (#32)

20&21为什么没有视频呢

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

unclemin commented 5 years ago

胖哥 rn会出吗?

shenghy commented 5 years ago

@unclemin

胖哥 rn会出吗?

会出的,正在筹划中............

cxlbus commented 5 years ago

胖哥 你这react 会像vue一样?把react全家桶也讲了?

youwillbe commented 5 years ago

没有hook不幸福啊,都没人写class了

AplogizeDear commented 5 years ago

铁粉了,胖哥哥加油-

ffywhxf commented 5 years ago

胖哥,什么时候会出一个Electron+vue ( or +react) 的教程?

xialang commented 5 years ago

啥事开车native啊嘻嘻。。。。

zerocsss commented 5 years ago

胖哥还会继续更新React教程吗,坐等更新,新生命周期和Hooks的讲解

K-Stella commented 5 years ago

胖哥,你好。有个小小的疑问,请问React里面用 Class 来编写组件和Function编写组件的差别大吗?最近初学React,但是我个人都是在用Function这种方式进行编写,我看到教程里好像都是用Class的,而且基本是网上找的很多资料也是用Class编写的,感觉有时候两者转不过来...

然后还想请问下后期会有关于Hook的讲解吗?

最后,感谢胖哥的课程,感觉很适合初学者观看。

tangsengrouyidai commented 5 years ago

胖哥,你11节课快速打出的属性dangerouslySet InnerHTML 所对应使用的插件叫什么啊?

syqhtt commented 5 years ago

胖哥,不录hook教程吗

shenanheng commented 5 years ago

视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

syqhtt commented 5 years ago

@shenanheng

视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

可以用扩展运算符,const list = [...this.state.list];或者直接map映射一个新的数组

syqhtt commented 5 years ago

@shenanheng

视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

我用的就是扩展运算符,直接赋值地址还是指向了this.state.list了

shenanheng commented 5 years ago

@syqhtt

@shenanheng

视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

我用的就是扩展运算符,直接赋值地址还是指向了this.state.list了 您再看看,你写的方法,并没有用扩展运算符,视频第10节,8分钟的deleteItem那个方法

syqhtt commented 5 years ago

@shenanheng

@syqhtt

@shenanheng

视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

我用的就是扩展运算符,直接赋值地址还是指向了this.state.list了 您再看看,你写的方法,并没有用扩展运算符,视频第10节,8分钟的deleteItem那个方法

大兄弟,你@错了,你应该@胖哥

shenanheng commented 5 years ago

@shenghy 视频第10节,你删除一个元素里面的代码里面的方法是用的是const list = this.state.list; list.splice(0,0);当时你这里实际上也是改变了this.state.list的并没有切断引用啊

Mr-Super-X commented 5 years ago

期待大佬redux视频

syqhtt commented 5 years ago

@Mr-Jemp

期待大佬redux视频

胖哥的redux教程已经完结了,http://jspang.com/posts/2019/06/20/redux.html

freedom-J commented 5 years ago

大佬,上面提供的QQ群人满了,还有其他Q群吗

yangkunxiao commented 5 years ago

刚刚接触react 希望跟随技术胖一起学习 进入react

shengbenqiang commented 5 years ago

希望胖哥能出一下react-native和android原生的视频,我最近用RN0.61.2版本踩了很多坑,网上和教学视频大多用的是0.57甚至更低,虽说踩了很多,但用起来还是不是很顺手,。大三了,希望赶紧把坑都填一填,然后把原生给好好学了。(原谅是个学生党 , 只能白嫖 哈哈)

i-coder-robot commented 4 years ago

524520566 . 加群,回答问题 javascript,这也能说回答错误?

bambuo commented 4 years ago

在掘金上看到胖哥的,支持一下