JQuery使用AJAX

weixin_34378969發表於2017-03-09
$.ajax({
            url: nodeTreeUrl+"?authkey="+authkey+"&secret="+secret,
            dataType: 'json',
            cache: false,
            success: function(data) {
                this.setState({data: data});
                console.log(data);
            }.bind(this),
            error: function(xhr, status, err) {
                console.error(nodeTreeUrl, status, err.toString());
            }.bind(this)
        });

相關文章