Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 254 Bytes

initialization_examples_with_query_option.md

File metadata and controls

19 lines (16 loc) · 254 Bytes

初始化示例:查询选项

const socket=io({
    query:{
        token:"code"
    }
})

重新连接时也可以更新查询内容:

socket.on('reconnect_attempt',()=>{
    socket.io.opts.query={
        token:"fgh"
    }
})