jquery.$.ajax简单的使用

Posted 喜欢GIS

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery.$.ajax简单的使用相关的知识,希望对你有一定的参考价值。

function LoadWFS()
        {
            var viewer = new Cesium.Viewer(‘cesiumContainer‘);
            $.ajax({                
                url: "http://localhost/SG/streamer.ashx?&VERSION=1.0.0&Service=WFS&Username=&Password=&TYPENAME=cc.398445&request=GetFeature",
                cache: false,
                async: true,
                success: function (data) {
                    alert(data.childNodes[0].childNodes.length);
                    //alert(data.childNodes[0].childNodes[1].childNodes[0].childNodes[0].childNodes[0].childNodes[0].firstChild.nodeValue);
                    viewer.entities.removeAll();
                    for (var i = 1; i < data.childNodes[0].childNodes.length; i++) {
                        var gxyz = data.childNodes[0].childNodes[i].childNodes[0].childNodes[0].childNodes[0].childNodes[0].firstChild.nodeValue;
                        
                        var geo = gxyz.split(‘,‘);

                        var position = Cesium.Cartesian3.fromDegrees(parseFloat(geo[0]), parseFloat(geo[1]), parseFloat(geo[2]));
                        var heading = Cesium.Math.toRadians(135);
                        var pitch = 0;
                        var roll = 0;
                        var hpr = new Cesium.HeadingPitchRoll(heading, pitch, roll);
                        var orientation = Cesium.Transforms.headingPitchRollQuaternion(position, hpr);
                        
                        createModel(parseFloat(geo[0]), parseFloat(geo[1]), ‘http://localhost/SG/TerraExplorerWeb/models/Cesium_Air.glb‘, 1000);

                    };
                    viewer.flyTo(viewer.entities);
                },
                error: function (data) {
                    alert(data);
                }
            });
            
        }

  

以上是关于jquery.$.ajax简单的使用的主要内容,如果未能解决你的问题,请参考以下文章

几个非常实用的JQuery代码片段

jQuery高级Ajax

使用 Jquery 的同步“Ajax”调用似乎不起作用

十条jQuery代码片段助力Web开发效率提升

十条jQuery代码片段助力Web开发效率提升

前端面试题之手写promise