iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 12
0
自我挑戰組

從JS到React的前端入門實作系列 第 12

Day12:介紹開啟頁面、改用Class形式的組件

  • 分享至 

  • xImage
  •  

今日目的

今天把昨天React下載的檔案丟入編輯器,我個人使用Vscoed,然後先點開src資料夾底下的App.js的檔案。/images/emoticon/emoticon12.gif
如圖
https://ithelp.ithome.com.tw/upload/images/20190927/20115505qVo7KV9pc5.png

更改開始的程式頁面

首先頁面,打開之後,是昨天那個綠綠的圖案,程式改成以下形式,如下
https://ithelp.ithome.com.tw/upload/images/20190927/20115505q1hQYNpP6a.png
改完後打開頁面會長這樣
https://ithelp.ithome.com.tw/upload/images/20190927/20115505FaXyX3WjTo.png

改用class的組件形式

一個class代表一個組件,我之後都會以class為為基準,請把App.js改成以下樣子

import React from 'react'; //引用react的需要套件

class App extends React.Component { //組件名為 App
  
  render() {
    return(
      <div> {/* 在retrun裡要用div包裹著 */}
        Hello React 
      </div>
    );
  }
  
}

export default App; //輸出組件名為 App

改完後會像這樣
https://ithelp.ithome.com.tw/upload/images/20190927/20115505jZGcNIzuko.png

推薦React官網

這是React官網 https://reactjs.org/ 的網址,React官網裡面點擊Docs之後,右邊請點擊,這邊都是React的基礎教學。
https://ithelp.ithome.com.tw/upload/images/20190927/20115505fcnO49P442.png


今天先這樣,明天會介紹JSX語法,以及如何新增組件,引入新增的組件。

參考資料:
https://reactjs.org/
自己


上一篇
Day11:React環境安裝以及啟動React
下一篇
Day13:介紹JSX語法,新增組件,引入新增組件
系列文
從JS到React的前端入門實作30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言