91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在React框架中使用SpreadJS

發布時間:2021-12-14 14:02:39 來源:億速云 閱讀:173 作者:柒染 欄目:互聯網科技

如何在React框架中使用SpreadJS,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

第1步:設置HTML5頁面

首先,我們需要在頁面中添加對React的引用:

 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>SpreadJS React Demo</title> <script src="https://unpkg.com/react@16/umd/react.development.js"></script> <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> </head> </html>

在這個頁面中,我們將使用Babel的預編譯版本(稱為babel-standalone),因此我們也會添加一個對此的引用:

<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>

最后,添加對Spread.Sheets的引用:

 <script src="http://cdn.grapecity.com/spreadjs/hosted/scripts/gc.spread.sheets.all.11.0.0.min.js"></script> <link rel="stylesheet" type="text/css" href="http://cdn.grapecity.com/spreadjs/hosted/css/gc.spread.sheets.excel2013white.11.0.0.css">

在我們編寫任何腳本之前,我們需要定義一個DIV元素來包含Spread實例。我們稱之為“root”。

 <div id="root"></div>

第2步:為Spread.Sheets創建一個React類

接下來,在頁面中添加一個腳本元素。我們將把所有的代碼放在這里:

 <script type="text/babel"> </script>

然后,為Spread.Sheets定義一個React組件,以便我們可以定義一個擴展React.Component的類:

 class ReactSpreadJS extends React.Component{
    }

該類需要在其中定義componentDidMount和render函數。componentDidMount函數在組件被掛載后立即被調用,所以我們用它來初始化Spread實例:

 componentDidMount() { //In the DidMount life cycle, we initialize Spread Sheet instance, and the host is defined in the Component template. let spread = new GC.Spread.Sheets.Workbook(this.refs.spreadJs, {sheetCount: 3}); if(this.props.workbookInitialized){ this.props.workbookInitialized(spread);
        }
    }

接下來,在渲染函數中定義Spread.Sheets DOM元素:

 render() { //Define the Spread.Sheets DOM template return(
            <div ref="spreadJs" style={{width:'100%',height:'100%'}}>);
    }

第3步:為組件創建一個應用程序類

首先,通過App類定義應用程序React組件:

 //Define the application react component. class App extends React.Component{
    }

接下來,添加一個您將調用ReactSpreadJS組件的渲染函數:

 render(){ //In the root component, it include one ReactSpreadJS component. return( <div style={{width:'800px',height:'600px'}}> <ReactSpreadJS workbookInitialized = {(spread)=>{console.log(spread)}}> </ReactSpreadJS> </div> )
    }

要完成腳本,請告訴React通過使用ReactDOM.render來初始化應用程序:

 ReactDOM.render( //Main entry, initialize application react component. <App/>, document.getElementById('root')
    );

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高陵县| 崇礼县| 巴楚县| 林甸县| 黑河市| 洪泽县| 石城县| 仪征市| 嘉兴市| 龙井市| 故城县| 昌都县| 太康县| 宿州市| 华宁县| 河南省| 敦煌市| 宁津县| 改则县| 东港市| 烟台市| 桐柏县| 扶风县| 房山区| 任丘市| 临城县| 古交市| 额济纳旗| 建德市| 利辛县| 舒城县| 诸暨市| 汶上县| 图片| 鹤庆县| 广宁县| 盐边县| 东平县| 白银市| 保山市| 台北市|