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

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

如何在 reactJS 的 get 請求中設置參數(shù)

如何在 reactJS 的 get 請求中設置參數(shù)

收到一只叮咚 2022-10-26 16:02:09
也許這是一個非常新手的問題,但我花了很多時間來尋找這樣做的好方法,但我沒有找到方便的答案。我正在嘗試對rest api進行簡單的調(diào)用,并且我想傳遞一個帶有附加到字符串的GET請求的值。像 url/foo 其中 foo 是參數(shù)。我有一個查詢變量,我想將它附加到獲取請求的 url 字符串的末尾。先感謝您。class About extends React.Component {    constructor(props) {        super(props);        this.state = {            products: [],            filteredItems: [],            user: {},            query: '' <-- query variable to be appended to the end of the get request        };    }    componentDidMount() {        fetch(`'myurl/${this.state.query}'`) <-- i want to append the variable at the end of the string ??            .then(res => res.json())            .then((result) => {                    console.log(result);                    this.setState({                        products: result,                        filteredItems: result                    });                }            )    }    queryChange = (evt) => {        this.setState({query: evt.target.value}) <-- update the variable state from an event    }
查看完整描述

3 回答

?
qq_笑_17

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

去掉多余的引號 ( ')'myurl/${this.state.query}'



查看完整回答
反對 回復 2022-10-26
?
慕姐4208626

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

您也可以在不使用 `` 或 $ 的情況下傳遞參數(shù),在 componentDidMount()


   componentDidMount() {

        let query = this.state.query;

        fetch('myurl/'+query)

            .then(res => res.json())

            .then((result) => {

                    console.log(result);

                    this.setState({

                        products: result,

                        filteredItems: result

                    });

                }

            )

    }


查看完整回答
反對 回復 2022-10-26
?
撒科打諢

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

let query = {id:1};

let url = 'https:example.com//xyz.com/search?' + query;


 fetch(url)


查看完整回答
反對 回復 2022-10-26
  • 3 回答
  • 0 關(guān)注
  • 243 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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