摘要:
建议如果一行代码是以 ( [ ` 开头的,则最好都在其前面补上一个分号。 // 1.( function say() { console.log('hello world') } // TypeError: say(...) is not a function say() ;(function () 阅读全文
摘要:
redux的actiontypes,不可以重名,重名将会报错 When called with an action of type "inserttoken", the slice reducer for key "admintoken" returned undefined. To ignore 阅读全文