client?eb57:75 ./src/components/Main.js
Module build failed: SyntaxError: G:/react/gallery-by-react/src/components/Main.js: Unexpected token (67:3)
65 | </section>
66 | );
> 67 | },
| ^
68 | Constant:{
69 | centerPos:{
70 | left:0,
搞不明白为什么英文逗号不识别不了
Module build failed: SyntaxError: G:/react/gallery-by-react/src/components/Main.js: Unexpected token (67:3)
65 | </section>
66 | );
> 67 | },
| ^
68 | Constant:{
69 | centerPos:{
70 | left:0,
搞不明白为什么英文逗号不识别不了
2017-05-01
加载json这里有一个大坑,最新的是用
rules: [
{
test: /\.json$/,
use: 'json-loader'
}
]
而不是
{
test: /\.json$/,
loader: 'json-loader'
}
rules: [
{
test: /\.json$/,
use: 'json-loader'
}
]
而不是
{
test: /\.json$/,
loader: 'json-loader'
}
2017-04-27
项目完整地址: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
平时自己写代码会写注释,一般函数外部表明函数做的事情和逻辑也会在函数内部关键地方注释。 但是css还很少会写注释。感觉这门课不止学了react 还学了代码规范 老师好样的