第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Typescript 類型錯(cuò)誤屬性不存在

Typescript 類型錯(cuò)誤屬性不存在

回首憶惘然 2023-07-14 14:58:33
我的 Typescript Next 項(xiàng)目中有這個(gè)組件import PageTitle from './pagetitle'import style from './contact.styl'export default function Contact() {  return (    <section>      <a name="contact"></a>      <div className={style.container}>    <PageTitle title='get in touch!'/>        <form action="">          <input name="name" type="text" placeholder="name" />          <input name="subject" type="text" placeholder="subject" />          <textarea placeholder="message" />          <button type="submit">send</button>        </form>      </div>    </section>  );}這contact.styl看起來(lái)像是使用 Stylus CSS 預(yù)處理器的 CSS 文件,因此樣式拼寫(xiě)沒(méi)有拼寫(xiě)錯(cuò)誤。我最近使用“next-env.d.ts”文件中的模塊聲明修復(fù)了一個(gè)錯(cuò)誤.container    width 95vw    height 90vh    display flex    flex-direction column    background rgba(43,43,43,.97)    border-radius 60px    margin 0 auto    h3        font-size 22px        color #d3ecf7form    height 450px    display flex    flex-direction column    justify-content space-evenly    align-items center    margin-top 3rem    input, textarea        width 355px        box-shadow 0px 3px 6px #00000029        border-radius 13px        outline none        border none        background #2b2b2b        font normal normal 300 20px Avenir        padding-top 5px        text-align center        color #fff    input        height 45px    textarea        height 200px        resize none    ::placeholder        text-align center        font normal normal 300 20px Avenir        color #d3ecf7@media(max-width 760px)    .container        width 100vw        height auto        border-radius 0                form        height 500px        margin-top 0         input, textarea            width 90vw但我一直收到這個(gè)錯(cuò)誤?Type error: Property 'container' does not exist on type 'string'.誰(shuí)能幫我找出原因嗎?編輯:添加contact.styl 找出問(wèn)題所在Try to add an asterisk to the module name as in the updated example. **- Sergey**
查看完整描述

1 回答

?
忽然笑

TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超5個(gè)贊

似乎您在聲明.d.ts文件中的某處有一個(gè)模塊聲明。它可能看起來(lái)像這樣:


declare module ".styl" {

  const value: string;

  export default value;

}

如果這是正確的,您應(yīng)該將導(dǎo)出類型更改為Record<string, string>. 像這樣:


declare module "*.styl" {

  const value: {[key: string]: string};

  export default value;

}


查看完整回答
反對(duì) 回復(fù) 2023-07-14
  • 1 回答
  • 0 關(guān)注
  • 130 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)