前端动态加载(ajax接口连接后台数据,将后台数据返回到前端页面)。

前端页面:
前端动态加载(ajax接口连接后台数据,将后台数据返回到前端页面)。_第1张图片

js代码:

var httpurl = “http://60.205.179.111:8080” ;//访问电脑的路径
$(function () {
debugger;
var obj = {

} ;
$.ajax({
    url: httpurl + '/queryOverProject1',//要连接的接口
    type: 'POST',
    dataType: 'json',
    contentType: "application/json",
    async: false,
    data: JSON.stringify(obj),
    xhrFields: {
        withCredentials: true
    },
    success: function (result) {
        console.log(result)
        if (result.code == "200") {
            pageInfo = result.data;
            console.log(pageInfo);
            // console.log(type);
            // setPageInfo();
            setPageInfo(pageInfo);
        } else {
            alert("错误码;" + result.code + "   错误信息:" + result.message);
        }
    },
    error: function (XMLHttpRequest, textStatus, errorThrown) {
        console.log('XMLHttpRequest:');
        console.log(XMLHttpRequest);
        alert('网络异常!尝试刷新网页解决问题')
    }
});

});
function setPageInfo(result) {

var text = "";
text += '
' text += '
' text +='
' text +='

'+result[0].projectCategory+'

' text +=' '+result[0].projectCategory+'' text +=' '+result[0].projectCategory+' ' text +=' '+result[0].projectCategory+'' text +=' '+result[0].projectCategory+'' text +=' '+result[0].projectCategory+'' text +='
' text +=''+result[0].projectCategory+'' text +=''+result[0].projectCategory+'' text +='
' console.log(text) console.log( $('#All')) $('#All').append(text);

}
心得:本人做这个的时候犯了一个小错误,把All写成了ALL,导致和前端页面代码对应不上。

你可能感兴趣的:(前端技术)