码迷,mamicode.com
首页 > 移动开发 > 详细

asxios--form data提交,setcookie

时间:2018-07-05 10:21:55      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:roc   RoCE   his   ted   console   app   踩坑   com   ext2   

React native 项目,部分接口用form data 提交,以及在Android端,虽然设置了请求携带cookie,但每次请求携带的cookie跟初始化时都不一样,目前做法是去到初始化中返回的userID保存下来,set到后面请求的cookie中,代码如下:

axios.post(‘http://103.28.215.253:10528/knowledge/chat/process‘,"content="+a,{
    headers:{
        ‘Content-Type‘:‘application/x-www-form-urlencoded‘,
        "Cookie" : ‘uid=‘ + this.state.uid,//设置cookie
    },
    withCredentials: true,//设置请求带cookie
}).then(res=>{
    console.log(res)
    if(res.data.data.code == 200){
        this.addItem(res.data.data.content,1,false,res.data.data.selectedItems)
        const s = new Sound("https://tsn.baidu.com/text2audio?lan=zh&ctp=1&cuid=%22sungeliang_shilihuan_gaoyizhen%22&tok=24.05a4f5f9561eee95708da8c069b63053.2592000.1532508020.282335-11276997&tex="+res.data.data.content+"&vol=9&per=0&spd=5&pit=5",null,(e)=>{
            if (e){
                console.log(‘播放失败‘)
                return
            }
            s.play(()=>s.release())
        })
    }
})

  

RN项目目前踩坑阶段,

asxios--form data提交,setcookie

标签:roc   RoCE   his   ted   console   app   踩坑   com   ext2   

原文地址:https://www.cnblogs.com/keleyz/p/9266619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!