Nextjs之page router實戰(zhàn)記錄

動態(tài)表單

初始化必須給{}賦值表單的name與值姆钉,否則會報不受控(即使是遍歷出來的表單)

動態(tài)樣式

方案一:CSS Module + classnames

  import classNames from 'classnames'
  function Render () {  
    return (
        <div className={
          classNames(
            ProgressStyles.fragment, {
              [ProgressStyles.fragmentActive]: idx <= activeIndex
            }
          )
        } key={idx}>{idx}</div>
    )
}

Notes: CSS Modules不支持連字符涮雷、下劃線銜接钧萍。

.fragment {
  background: rgba(0, 0, 0, 0.06);
  flex: 1;

  & + & {
    margin: {
      left: 10px;
    };
  }

  &Active {
    background: #0F68FF;
  }
}

方案二:樣式滲透

:global

  :global {
    .ant-select-selector {
      border: 1px solid #E5E5E5;
      background: linear-gradient(125.85deg, rgba(59, 63, 238, 0.1) 0%, rgba(57, 159, 254, 0.1) 100%);
      @media screen and (min-width: 550px) {
        height: nth($lineHeight, 1)!important;
        line-height: nth($lineHeight, 1)!important;
      }
      @media screen and (max-width: 550px) {
        height: nth($lineHeight, 2)!important;
        line-height: nth($lineHeight, 2)!important;
      }
    }
    .ant-select-selection-placeholder {
      @include placeholder;
    }
  }
  :global(.swiper-slide) {
    cursor: pointer;
  }

組件定義

Slot定義

SwiperCommon組件的調(diào)用,需要用SwiperCommon內(nèi)部遍歷的列表項數(shù)據(jù):

export default function Render () {
  return (
    <SwiperCommon className="newsSwiper" metas={data.list} options={}>
        {
          (meta) => (
            <section className={NewsStyles.swiperSlide} onClick={() => handleClick(meta.id)}>
              <div className={NewsStyles.coverWrapper}>
                <Image alt={meta.title} src={meta.cover} className={NewsStyles.img}/>
              </div>
              <p className={NewsStyles.slideTitle}>{meta.title}</p>
              <p className={NewsStyles.summary}>{meta.summary}</p>
              <p className={NewsStyles.date}>{meta.time}</p>
            </section>
          )
        }
      </SwiperCommon>
  )
}

ScopedSlot定義:

import { useEffect } from 'react';
import SwiperCommonStyles from '@/styles/swiper-common.module.scss'
function SwiperCommon ({ children, metas = [], className: externalClass, options = {}}) {
  useEffect(() => {
    const swiper = new Swiper(`.${externalClass || 'swiper'}`, {
      direction: 'horizontal',
      centerInsufficientSlides: true,
      ...options
    });
  }, [externalClass, options])
  return (
    <>
      {
        metas.length && (
          <div className={classNames(SwiperCommonStyles.swiper, `swiper ${externalClass}`)}>
            <div className={classNames(SwiperCommonStyles.swiperWrapper, 'swiper-wrapper')}>
              {
                metas.map((item, idx) => (
                  <div key={idx} className={classNames(SwiperCommonStyles.swiperSlide, 'swiper-slide')}>
                    {children && children(item)}
                  </div>
                ))
              }
            </div>
          </div>
        )
      }
    </>
  )
}
export default SwiperCommon

參數(shù)解構(gòu)

  <!--閉合標簽使用時晓避,組件參數(shù)類型聲明中包含children-->
  <NavigationBar
    title="This is title"
  >
  </NavigationBar>
  <!--空標簽使用時疫赎,組件參數(shù)類型聲明中不包含children-->
  <NavigationBar
    title="This is title"
  />

組件的參數(shù)解構(gòu):

import NavigationBarStyles from "../styles/navigationbar.module.scss"
function Navigationbar ({ children, title = "", historyBack = false }) {
  return (
    <div className={NavigationBarStyles.container}>
      {historyBack && (<div className={NavigationBarStyles.historyBack}>&lt;</div>)}
      <NavigationbarContent title={title}>{children}</NavigationbarContent>
    </div>
  )
}
export default Navigationbar

Notes:

  • <NavigationBar />形式調(diào)用組件禽炬,解構(gòu)出來的childrenundefined
  • <NavigationBar></NavigationBar> 形式調(diào)用組件,即使子節(jié)點為空蟹瘾,也能解構(gòu)出來的children[]

全局SCSS變量配置

https://stackoverflow.com/questions/60951575/next-js-using-sass-variables-from-global-scss

const path = require('path');
const nextConfig = (phase, { defaultConfig }) => {
  if ('sassOptions' in defaultConfig) {
    defaultConfig['sassOptions'] = {
      includePaths: [path.join(__dirname, 'styles')],
      prependData: `@import "utils.scss";`,
    };
  }
  return defaultConfig;
};
module.exports = nextConfig;

全局可訪問變量

在根目錄下定義.env圾浅、.env.development.env.production憾朴、.env.local文件

Node環(huán)境

HOSTNAME=localhost
PORT=8080
HOST=http://$HOSTNAME:$PORT

Notes:

  • 以上變量在Node環(huán)境中可通過process.env.HOSTNAME形式獲取狸捕,無法在瀏覽器中獲取伊脓;
  • 可以通過$Variable的形式府寒,在另一個變量定義中引用其他變量

Browser環(huán)境

NEXT_PUBLIC_API_BASEURL=http://127.0.0.1:3000

Notes:

  • 以上變量可以在Node魁衙、Browser環(huán)境中可通過process.env.NEXT_PUBLIC_API_BASEURL形式獲取
  • NEXT_PUBLIC_ 前綴定義變量可以暴露在瀏覽器環(huán)境;

限制

  • 只能通過process.env.VarName的形式訪問株搔,無法通過解構(gòu)剖淀、[變量]形式訪問
    • process.env[varName] ——> Error
    • const env = process.env ——> Error

類型聲明

https://dmitripavlutin.com/typescript-react-components/

https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts

圖片渲染

Nextjs圖片渲染官方文檔

  • 使用'next/image'提供的組件,會提供圖片優(yōu)化 — 懶加載
  • 使用'next/image'提供的組件纤房,必須設(shè)定圖片尺寸纵隔,圖片尺寸若要根據(jù)父級尺寸,需設(shè)置父元素position: relative炮姨,<Image layout="fill"... — 此時生成的img標簽是絕對定位的捌刮。
import Image from 'next/image';
import welcomeStyles from '../styles/welcome.module.scss';

export default function Home() {
  return (
    <>
      <section className={welcomeStyles.navigationbar}>
        <h1 className='navigationbar-title'>new world</h1>
      </section>
      <section className={welcomeStyles.main}>
        <h2 className={welcomeStyles.title}>Welcome new world!</h2> 
        <div className={welcomeStyles.cover}>
          <Image layout="fill" objectFit="cover" src="/images/entries/wel.png" alt="" />
        </div>
      </section>
    </>
  );
}

客戶端渲染

  useEffect(() => {
    import("../lib/flexible");
    import("../lib/flexibleHelper");
  }, []);

api Route

api定義

范指/pages/api/**/*.js路徑下的文件舒岸,該處主要是轉(zhuǎn)接服務(wù)端接口绅作,中轉(zhuǎn)前端數(shù)據(jù)結(jié)構(gòu)。

//  /pages/api/blog
export default function handler(req, res) { // 導(dǎo)出的函數(shù)方法名無實際意義
  res.status(200).json({ name: 'John Doe' })
}

Notes: 該JavaScript是服務(wù)端代碼蛾派,而非H5前端代碼俄认;

api訪問

export async function getStaticProps(context) {
  const res = await fetch(`${process.env.BaseUrl}/api/blog`)
  const features = await res.json()
  return {
    props: {
      features,
    },
  }
}
export default function Blog ({features}) {
  const features = response
  return (
    <>
      <News meta={features.NewsResponse} />
    </>
  )
}

Notes:

  • 前端必須通過http(s)協(xié)議請求,所以洪乍,必須啟動服務(wù)才可以訪問Api Route
  • getStaticProps只能在Pages下調(diào)用眯杏,在componets中調(diào)用無效

導(dǎo)出純靜態(tài)頁面

導(dǎo)出不需要服務(wù)配置,可獨立訪問的HTML靜態(tài)頁面(注意:SSG也是需要服務(wù)端配置的)

  1. 示例中的Nextjs在13.3(不含)以下版本:13.2.4
  2. 頁面內(nèi)的數(shù)據(jù)都是本地Mock的JSON數(shù)據(jù)
  3. 修改next.config.js配置:
const nextConfig = (phase, {defaultConfig}) => {
  defaultConfig.reactStrictMode = true
  defaultConfig.exportPathMap = async function (defaultPathMap) {
    return {
      '/': { page: '/' },
      '/news': { page: '/news' },
      '/blog': { page: '/blog' },
    }
  }
  defaultConfig.images.unoptimized = true
  return defaultConfig
}

module.exports = nextConfig

  • 配置exportPathMap字段壳澳,官網(wǎng)文檔聲明13.3版本以上會自動生成岂贩,無需配置
  • 配置images.unoptimized = true,不允許優(yōu)化圖片巷波,否則會報錯
  1. 補充package#scripts萎津,運行npm run export
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "export": "next build && next export && npm run build-static-repair-index && npm run build-favicon-repair-index && npm run build-logo-repair-index",
    "build-static-repair-index": "replace-in-files --string \"/_next/static\" --replacement \"/_next/static\" out/index.html",
    "build-favicon-repair-index": "replace-in-files --string \"/favicon.ico\" --replacement \"./favicon.ico\" out/*.html",
    "build-logo-repair-index": "replace-in-files --string \"/logo*.png\" --replacement \"./logo*.png\" out/*.html",
    "start": "next start",
    "lint": "next lint"
  },

  • 靜態(tài)打包后的資源引用地址不對,目前沒找到配置項可用褥紫,需借助于replace-in-files單獨處理資源引用姜性。
  1. /out中的靜態(tài)資源部署即可
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市髓考,隨后出現(xiàn)的幾起案子部念,更是在濱河造成了極大的恐慌,老刑警劉巖氨菇,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件儡炼,死亡現(xiàn)場離奇詭異,居然都是意外死亡查蓉,警方通過查閱死者的電腦和手機乌询,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來豌研,“玉大人妹田,你說我怎么就攤上這事唬党。” “怎么了鬼佣?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵驶拱,是天一觀的道長。 經(jīng)常有香客問我晶衷,道長蓝纲,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任晌纫,我火速辦了婚禮税迷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘锹漱。我一直安慰自己箭养,他們只是感情好,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布哥牍。 她就那樣靜靜地躺著露懒,像睡著了一般。 火紅的嫁衣襯著肌膚如雪砂心。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天蛇耀,我揣著相機與錄音辩诞,去河邊找鬼。 笑死纺涤,一個胖子當著我的面吹牛译暂,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播撩炊,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼外永,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了拧咳?” 一聲冷哼從身側(cè)響起伯顶,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎骆膝,沒想到半個月后祭衩,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡阅签,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年掐暮,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片政钟。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡路克,死狀恐怖樟结,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情精算,我是刑警寧澤瓢宦,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站殖妇,受9級特大地震影響刁笙,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜谦趣,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一疲吸、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧前鹅,春花似錦摘悴、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至捂寿,卻和暖如春口四,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背秦陋。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工蔓彩, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人驳概。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓赤嚼,卻偏偏與公主長得像,于是被迫代替她去往敵國和親顺又。 傳聞我的和親對象是個殘疾皇子更卒,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容