1. 使用 redux 的異步 action 時瀏覽器報錯:webpack
Error: Actions must be plain objects. Use custom middleware for async actions.
【緣由】沒有添加 thunk 中間件web
【解決方法】在入口文件中添加中間件,並在 createStore 時進行註冊:npm
import thunkMiddleware from 'redux-thunk'
const createStoreWithMiddleware = applyMiddleware(loggerMiddleware, thunkMiddleware)(createStore)
2. ant design pro 開啓 eslint 後出現大量 warning:redux
Line 1: Definition for rule 'jsx-a11y/href-no-hash' was not jsx-a11y/href-no-hash瀏覽器
【緣由】airbnb 的插件 jsx-a11y 暫時不能使用v6版本。antd
【解決方案】下降 eslint-plugin-jsx-a11y 版本爲 5.1.0app
npm install eslint-plugin-jsx-a11y@5.1.0 --save-dev
【注】異步
1. 在 antd pro 上提 issure,給的回覆是 update eslint,嘗試過,無效。async
2. google 上的解決方法是在 eslint 文件中添加規則:'jsx-a11y/href-no-hash': 'off' ,嘗試過,無效。 google
3. 參考資料:eslint 結合webpack 在React環境下的使用