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

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

form表單提交數(shù)據(jù)時,keywords會替換掉之前原有的參數(shù)?

form表單提交數(shù)據(jù)時,keywords會替換掉之前原有的參數(shù)?

開滿天機 2018-07-23 21:54:07
如題:這樣的情況怎么解決好呢?,然道寫一個提交前處理keywords再拼接上去的方法?代碼:<form acceptCharset="gbk" method="get" action="https:xxx_search.htm?product=true&tags=123" >                 <div className="searchBar">                   <input className="searchVal" placeholder="輸入關(guān)鍵詞搜索"                    value={this.state.value} name="keywords"                     onChange={event => {                       this.setState({                         value: event.target.value,                       });                     }} />                  <button className="searchBtn" type="submit">搜索</button>                 </div>               </form>
查看完整描述

2 回答

?
瀟湘沐

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

<form action="https:xxx_search.htm">
    <input type="hidden" name="product" value="true"/>
    <input type="hidden" name="tags" value="123"/>
    <input className="searchVal" placeholder="輸入關(guān)鍵詞搜索" 
                  value={this.state.value} name="keywords"
                    onChange={event => {
                      this.setState({
                        value: event.target.value,
                      });
                    }} /></form>


查看完整回答
反對 回復(fù) 2018-07-29
?
當(dāng)年話下

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

不用form表單的默認提交,用fetch或者axios異步提交

search(){    const {value} = this.state;
    fetch(`https:xxx_search.htm?product=true&tags=123&keywords=${value}`).then(...)
}
render(){    // ...
     <div className="searchBar">
        <input
            className="searchVal"
            placeholder="輸入關(guān)鍵詞搜索" 
            value={this.state.value} name="keywords"
            onChange={event => {                this.setState({                    value: event.target.value,
                });
            }} />
        <button className="searchBtn" onClick={this.search}>搜索</button>
    </div>
}


查看完整回答
反對 回復(fù) 2018-07-29
  • 2 回答
  • 0 關(guān)注
  • 915 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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