项目完整地址:https://github.com/zhangxintong/gallery-by-react
Demo:https://zhangxintong.github.io/gallery-by-react/
如有帮助帮忙点赞,谢谢
Demo:https://zhangxintong.github.io/gallery-by-react/
如有帮助帮忙点赞,谢谢
2017-04-17
版本更新,现在使用es6书写配置文件,启动项目用npm start,具体的命令全部被写在package.json中。
而webpack的基本设置都在cfg文件夹中,课程中的配置项主要在base.js和defaults.js中,希望可以帮到大家
而webpack的基本设置都在cfg文件夹中,课程中的配置项主要在base.js和defaults.js中,希望可以帮到大家
2017-04-08
getInitialState(){ return { isEditing: false } }报错的额解决方法是
constructor(props){
super(props);
this.state = { // define this.state in constructor
isEditing: false
}
}
constructor(props){
super(props);
this.state = { // define this.state in constructor
isEditing: false
}
}
2017-04-04
rearrange:function(centerIndex ) {} 报错的原因是es6创建extends React.Component 时
要去掉:function 也就是-->rearrange ( centerIndex ) {}
要去掉:function 也就是-->rearrange ( centerIndex ) {}
2017-04-04
最新回答 / 青青子衿_666
Enable postcss?选择了yes,出现冲突,该怎么办? Enable postcss? Yes conflict cfg? Overwrite cfg? (ynaxH)
2017-04-03
平时自己写代码会写注释,一般函数外部表明函数做的事情和逻辑也会在函数内部关键地方注释。 但是css还很少会写注释。感觉这门课不止学了react 还学了代码规范 老师好样的
由于版本问题,webpack-server的文件替换成了根目录下的server.js。可以通过localhost:8000/server访问
同理可以在componets下的main.js中加入一个script,指向server.js就可以热更新了
同理可以在componets下的main.js中加入一个script,指向server.js就可以热更新了
2017-03-28