理解Redux

Fork Me On Github

理解Redux

Reducer

(纯函数)拿到下一个State和之前的State来计算一个新的State。 初始化更改State中的值,并返回State ,接受两个参数 ,第一个为旧的state,第二个为action 根据type 更改state并返回

ts
        
function visibilityFilter(state = SHOW_ALL, action) {
  switch (action.type) {
    case SET_VISIBILITY_FILTER:
      return action.filter
    default:
      return state
  }
}
12345678

可以使用combineReducers合并

ts
        
import { combineReducers } from 'redux'

const todoApp = combineReducers({
  visibilityFilter,
  todos
})

export default todoApp
12345678

Store

Store 就是把它们联系到一起的对象

ts
               
let store = createStore(todoApp)
// 打印初始状态
console.log(store.getState())

// 每次 state 更新时,打印日志
// 注意 subscribe() 返回一个函数用来注销监听器
const unsubscribe = store.subscribe(() =>
  console.log(store.getState())
)

// 发起一系列 action
store.dispatch(setVisibilityFilter(VisibilityFilters.SHOW_COMPLETED))

// 停止监听 state 更新
unsubscribe();
123456789101112131415

Action

描述State的改变,必须是一个包含type键的对象

ts
     
export interface Action { 
  type: string; 
  payload?: any; // 这个值可有可无
}
12345

可以封装一个方法来生成action

ts
   
export function setVisibilityFilter(filter) {
  return { type: SET_VISIBILITY_FILTER, filter }
}
123
点击查看全文
0 351 0
48.6 ms
系统信息
Execution time48.6 ms
CPU usage user + system60 % + 4 %
Peak of allocated memory7.13 MB
Included files226
Classes + interfaces + traits140 + 29 + 26
Your IP18.222.172.32
Server IP172.21.0.9
HTTP method / response codeGET / 200
PHP8.4.2
Zodream5.1.0
Servernginx/1.27.3
运行信息
start0.0 ms
match route22.0 ms
controller response3.7 ms
db engine init6.4 ms
db engine end0.7 ms
db init end0.0 ms
view render5.4 ms
end48.8 ms
Queries(10)
[0.31ms] SELECT * FROM `blog` WHERE id = ? LIMIT 1
[0.22ms] SELECT * FROM `blog_term`
[0.6ms] SELECT term_id,COUNT(*) as count FROM `blog` WHERE parent_id = ? GROUP BY term_id
[0.42ms] SELECT id,language FROM `blog` WHERE parent_id = ?
[0.17ms] SELECT `tag_id` FROM `blog_tag_relationship` WHERE blog_id = ?
[0.19ms] SELECT `content`,`name` FROM `blog_meta` WHERE blog_id = ?
[0.19ms] SELECT id,name,avatar FROM `user` WHERE id in (?)
[0.26ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id < ? and language = ? and publish_status = ? ORDER BY id DESC LIMIT 1
[0.25ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id > ? and language = ? and publish_status = ? ORDER BY id ASC LIMIT 1
[0.21ms] SELECT * FROM `ad_position` WHERE code = ? and status = ? LIMIT 1
Views(5)
[Rendered] Module/Blog/UserInterface/layouts/header.php : 0.46ms
[Rendered] Module/Blog/UserInterface/Home/content.php : 3.1ms
[Rendered] Module/Blog/UserInterface/layouts/footer.php : 0.07ms
[Rendered] Module/Blog/UserInterface/Home/detail.php : 8.49ms
[Rendered] UserInterface/Home/layouts/main.php : 1ms