权限问题,用管理员身份打开命令行工具
我已经学完了,这是我的源码,你参考一下
源码 https://github.com/carrieguo/react-demo-my-order.git
箭头函数内可以使用this 。箭头函数中的this代表的是箭头函数的父函数的作用域。
箭头函数不定义this,可以使用this
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
已经适配了
.header {
background-color: #E9203D;
color: #FFFFFF;
height: 2rem;
text-align: center;
font-size: 1rem;
line-height: 2rem;
position: fixed;
top: 0;
width: 100%;
}
.order {
height: 100%;
overflow: scroll;
}
.orderList {
display: block;
padding: 2.2rem 0.5rem 0.2rem 0.5rem;
.orderList__picContainer {
padding-right: 0.625rem;
display: inline-block;
.orderList__pic {
width: 5.625rem;
height: 5.625rem;
}
}
.orderList__content {
display: inline-block;
width: calc(100% - 6.25rem);
line-height: 1.75rem;
.orderList__product {
max-width: 15rem;
font-size: 1rem;
font-weight: 700;
color: #111111;
padding-right: 0.5rem;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.orderList__shop {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 0.8125rem;
color: #777777;
padding: 0.5625rem 0.8125rem 0;
}
.orderList__detail {
display: flex;
justify-content: space-between;
height: 1.375rem;
line-height: 1.375rem;
padding-right: 0.25rem;
.orderList__price {
font-size: 0.875rem;
color: #777777;
vertical-align: 0.0625rem;
margin-left: 0.625rem;
}
.orderList__price::before {
content: '\A5';
margin-right: 0.0625rem;
}
}
}
.orderList__commentContainer {
.orderList__star--light {
color: #E9203D;
border-radius: 0.5rem;
}
textarea {
width: 100%;
height: 4rem;
margin-top: 0.2rem;
padding: 0.25rem 0.5rem;
font-size: 0.75rem;
color: #999999;
}
}
.orderList__btn {
width: 5rem;
height: 1.375rem;
text-align: center;
color: #FFFFFF;
border: 0;
font-size: 0.875rem;
}
.orderList__btn--red {
background-color: #E9203D;
}
.orderList__btn--grey {
background-color: #999999;
}
}
html5不是出了<header>标签吗
es5 写法是一个function 你自己改es6语法就可以了,这个评论有点晚,后来的学院可以看到,可能有一定的帮助。
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
任何磁盘位置都是可以的,可以使用指令切换到其他磁盘位置,例如 直接输入d: 然后回车这样就切换到D盘了
axios,一般在实际项目中用的是结合业务封装过的axios
vs code 的文档格式化默认快捷键:alt+shift+f
后者单独在封装成一个组件,就会将数据继续通过props向下传递,这样数据从orderList传递到orderItem,又传递到了评论组件,当项目过于庞大的时候这种深层次的嵌套性能会有问题
vue 中的 vuex 比 react 使用简单多了
https://vuex.vuejs.org/zh/guide/
建议查看官方文档
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
也可以在orderItem里面写,看自己喜好
当箭头函数有参数的时候。
如果直接传参将会是函数调用语法,引发报错。像这样 onClick={this.handleClickStarts(item)} 其实是调用了函数。
对于传参有两种处理方法。
第一种:自定义嵌套函数
handleClickStars = (item) => {
return (item) => {
// 原来的处理逻辑
}
}
第二种:在设置事件处理函数使用bind 方法,其实内部也是封装了返回了一个函数。
onClick={this.handleClickStarts.bind(this, item))}
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
是不是没有渲染?要在你想显示的地方渲染一下 {this.renderStars()}
<span className='oderItem__start--greny'+{light}>⭐️</span>
你生命了,但是你没有使用啊
/public 去掉
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
谢谢谢谢
艾特老师来告诉你;上面可能有额外的日志输出。 Npm ! 完整的运行日志可以在: npm err 中找到!
按老师的课程学完了,供大家参考
源码 https://github.com/carrieguo/react-demo-my-order.git
因为每一个子组件(OrderItem)有自己的state,只会控制自己的状态
这是肯定的,ui组件库推荐ant design 和ant design pro
fetch1问题根本解决不了