鍍金池/ 問答/ HTML問答
話寡 回答

你是說初始化嗎,還是怎樣。
如果不是初始化,antd的form本身就模擬了雙向數(shù)據(jù)綁定,不需要額外的賦值。
如果是初始化,兩種方法,一種initialValue,一種你寫的這個,你的寫法沒有問題,檢查一下,你是否具有note這個表單名吧,或者你的value是否有值,以及你是否可以實(shí)時觸發(fā)這段函數(shù)

this.props.form.setFieldsValue({
      note: `Hi, ${value === 'male' ? 'man' : 'lady'}!`,
    });
尛曖昧 回答

405 通常是因?yàn)镠TTP Method不對,即如果后臺只支持用POST提交,你卻用了GET等等

祉小皓 回答

這樣寫沒有問題,要在對應(yīng)的加載文件里寫module.exports = router; 謝謝,終于解決了

局外人 回答

睡個覺之后做了個莫名其妙的操作,就弄好了。這個頁面我是通過嵌套路由過來的

<div class="content"><router-view></router-view> </div>

在.content那里我設(shè)置了絕對定位,就不行了,剛剛我把絕對定位去掉了,就好了。但是我不太明白為什么,誰能為我解惑??!

孤星 回答

Spring clound微服務(wù)方案,可以解決這個問題

維她命 回答

<WrappedComponent { ...this.props } /> 你這里不用寫啊,WrappedComnponent 本身就會有props,無需傳遞的。你本來就是default props

薔薇花 回答

插件市場有很多主題,可以使用那些主題插件的,現(xiàn)在先把它的主題恢復(fù)成默認(rèn)的,網(wǎng)上有很多教程的

愛是癌 回答

你是在封裝openlayers嗎?還是哪個地圖api?

枕邊人 回答

我試了一下 node進(jìn)程的內(nèi)存漲到900多我就殺掉了 一直再漲 建議讀一點(diǎn)寫一點(diǎn) 不要都放在內(nèi)存中

膽怯 回答

我覺得,你花這點(diǎn)時間提問,都可以寫一個demo了,何不自己寫一個看看呢?

安淺陌 回答

1.假設(shè)你的數(shù)據(jù)叫arr:[]
2.你顯示的時候是用v-for('item in arr')
3.添加數(shù)據(jù)的時候直接往arr里加一條,頁面上會自動多一調(diào)顯示
4.點(diǎn)擊事件就注冊在你需要注冊的元素上,不需要放到數(shù)組中

浪蕩不羈 回答

不知道canvas和flex布局有什么關(guān)系......

墨小白 回答

swiper在后臺數(shù)據(jù)沒有回來已經(jīng)初始化了,swiper-slide 循環(huán) data ,加上這個 v-if=“data.length”,獲取數(shù)據(jù)了之后再渲染

情未了 回答

你在里面的時候吧函數(shù)定義到全局就可以了
這樣

window.downloadPictureForIOS = downloadPictureForIOS;

外面就可以調(diào)用了 不過你全局調(diào)用的話 能保證相關(guān)的庫已經(jīng)加載完了嗎

憶往昔 回答
  1. 按需引入 iview https://www.iviewui.com/docs/...

  2. 按需引入 echarts https://github.com/ywwhack/ba...

最后建議,把這些需要按需加載的模塊放到統(tǒng)一放到一個文件里,后面好維護(hù)

命于你 回答

目錄結(jié)構(gòu)

|-src
|----actions
|--------user.js
|--------office.js
|--------index.js
|----reducers
|--------user.js
|--------office.js
|--------index.js
|----pages
|--------office.js

Action整合

actions目錄中的index.js作為所有業(yè)務(wù)的集合,集中配置管理.

actions/index.js

import * as officeActions from './office';
import * as userActions from './user';

export default {
    ...officeActions,
    ...userActions,
}

actions/office.js

//這里的方法名稱要全局唯一
export function getOfficeList(){
    return async(dispatch,getState) => {
        let response = await fetch(url);
        //這里的type一定要全局唯一,因?yàn)闋顟B(tài)變一次每個Reducer都會根據(jù)類型比對一遍
        dispatch({type: 'GET_OFFICE_LIST', payLoad: response.json});
    }
}
export function getOfficeInfo(id){
    return async(dispatch,getState) => {
        let response = await fetch(url+'?id='+id);
        //這里的type一定要全局唯一,因?yàn)闋顟B(tài)變一次每個Reducer都會根據(jù)類型比對一遍
        dispatch({type: 'GET_OFFICE_DETAIL', payLoad: response.json});
    }
}

actions/user.js

//這里的方法名稱要全局唯一
export function getUserList(){
    return async(dispatch,getState) => {
        let response = await fetch(url);
        //這里的type一定要全局唯一,因?yàn)闋顟B(tài)變一次每個Reducer都會根據(jù)類型比對一遍
        dispatch({type: 'GET_USER_LIST', payLoad: response.json});
    }
}

Reducer整合

Reducer目錄中的index.js 所有子狀態(tài)的集合,集中配置管理.

reducers/index.js

import {combineReducers} from 'redux';

import officeReducer from './office';
import userReducer from './user';

const appReducer = combineReducers({
    office: officeReducer,
    user: userReducer,
});
export default appReducer;

reducers/office.js

//初始化狀態(tài)
let initialState = {
    officeList: [],
    officeInfo: {
        "id": "",
        "parent_id": "",
        "parent_ids": "",
        "name": "",
    },
};
const office = (state = initialState, action) => {
    switch (action.type) {
        //處理 類型為 GET_OFFICE_LIST 結(jié)果數(shù)據(jù)
        case 'GET_OFFICE_LIST':
            return Object.assign({}, state, {
                officeList: action.payLoad.data
            });
        //處理 類型為 GET_OFFICE_DETAIL 結(jié)果數(shù)據(jù)
        case 'GET_OFFICE_DETAIL':
            return Object.assign({}, state, {
                officeInfo: action.payLoad.data
            });
        default:
        //如果類型為匹配到 返回當(dāng)前state
            return state;
    }
};
export default office

最終使用

pages/office.js

import React, {Component} from 'react'
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';

//以antd為例
import {Table, Tree, Row, Col, Card, Button, Spin, Modal,Icon} from 'antd';
//引入Action集合,因?yàn)楹苡锌赡苣硞€頁面 需要調(diào)用多個子action
import Actions from '../actions';

class office extends Component {
    //生命周期此次不討論
    componentDidMount() {
        //請求機(jī)構(gòu) 數(shù)據(jù)
        this.props.action.getOfficeList();
  }

    handleOnRowClick = (officeId)=>{
        //點(diǎn)擊行 獲取結(jié)構(gòu)詳情數(shù)據(jù)
        this.props.action.getOfficeInfo(officeId);
    }
    
    render() {
        <div className="tableDistance">
        <Table rowSelection={rowSelection} columns={columns}
               dataSource={this.props.office.officeList}//綁定機(jī)構(gòu)數(shù)據(jù)并展現(xiàn)
               bordered size="middle"
               pagination={false} onRowClick={this.handleOnRowClick}
        />
    </div>
    }

}
//我習(xí)慣叫訂閱-訂閱Reducer/index.js集合中的需要的狀態(tài),reducer/office在這里進(jìn)行綁定(數(shù)據(jù)結(jié)構(gòu)具體見:initState),reducer/office數(shù)據(jù)變化這里就會變化,這里可以理解為數(shù)據(jù)源
const mapStateToProps = (state) => {
    return {
        office: state.office,
        user:state.user
    }
};
//將引入的Actions綁定,使當(dāng)前展現(xiàn)層具備 請求數(shù)據(jù)的能力,需要什么數(shù)據(jù),就請求對應(yīng)的 方法名(這就是為什么腔調(diào)actions/office.js 中的每個action 名稱一定要全局唯一,還是那句話,這個頁面可能需要多個子action的數(shù)據(jù)能力作為數(shù)據(jù)集中展現(xiàn)的基礎(chǔ))
const mapDispatchToProps = (dispatch) => {
    return {
        action: bindActionCreators(Actions, dispatch)
    }
};
//最重要一步 通過react-redux 提供的 connect函數(shù)將 需要的 Reducer和Actions 綁定至 當(dāng)前頁面
export default connect(mapStateToProps, mapDispatchToProps)(office);