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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

ReactJs 變量返回靜態(tài)文本

ReactJs 變量返回靜態(tài)文本

幕布斯7119047 2023-08-05 21:10:00
你好,我在reactjs中有這段代碼:{props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}我需要將它存儲在一個變量中,以便在另一個reactjs文件中使用它,所以我這樣做了: this.testVarible= {props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}但它似乎不起作用,其結(jié)果是: this.testVarible=2 我也嘗試這樣做: this.testVarible= {{props.slices[2].transform === '1' ? '10' : props.slices[2].transform.replace('0.','')}}但我收到錯誤。
查看完整描述

1 回答

?
達令說

TA貢獻1821條經(jīng)驗 獲得超6個贊

您應(yīng)該使用函數(shù)而不是變量。假設(shè)您已經(jīng)在utils.js中構(gòu)建了一個函數(shù)


實用程序.js


export const getTestVariable = (value) => (

  value === '1' ? '10' : value.replace('0.', '')

)

然后你可以在任何react文件中導(dǎo)入這個函數(shù)并使用它


import { getTestVariable } from './utils.js'

...

const testVariable = getTestVariable(props.slices[2].transform)


查看完整回答
反對 回復(fù) 2023-08-05
  • 1 回答
  • 0 關(guān)注
  • 123 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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