网络接口-短链接
const {ccclass, property} = cc._decorator;

@ccclass
export default class NetStuidy extends cc.Component {


    start () 
    {
        let xhr = new XMLHttpRequest()
        xhr.onreadystatechange = ()=>{
            if(xhr.readyState == 4 && (xhr.status >= 200 && xhr.status < 400)){
                console.log(xhr.responseText)
            }
        }
        xhr.open("GET","http://www.baidu.com",true)
        xhr.send()
    }
}

首页 我的博客
粤ICP备17103704号