-1

您好我正在开发一个移动应用程序,我正在尝试从 Web 服务返回的 xml 数据中绑定国家/地区名称。

我有以下 xml。XML 数据非常大,所以我在这里只粘贴了几个作为示例。

<NewDataSet>
  <Table>
    <detail>
     <country country_sk="2" currency_sk="165" country_name="Afghanistan" country_telecom_code="93  " country_code="AF" />
     <country country_sk="5" currency_sk="166" country_name="Albania" country_telecom_code="355 " country_code="AL" />
     <country country_sk="62" currency_sk="167" country_name="Algeria" country_telecom_code="213  " country_code="DZ" />
    </detail>
  </Table>

我正在使用以下代码访问 Web 服务。我认为问题出在成功功能上。

<script>
$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://www.url.asmx/countryList",
dataType: "xml",
success: function (xml) {
//var result = $(xml).find("country[country_sk=2]");
//var item = $(this), 
//itemid =  item.attr('id');
//         alert(data.nested.nestedString);
  //  alert(data.nested.nestedInt)

  var select = $('#mySelect');
  $(xml).find('country').each(function(){
    var value = $(this).attr('country_name');
    select.append("<option country_name='"+ country_name +"'>"+country_name+"</option>");
    });
        select.children(":first").text("--Select country--").attr("selected",true);
}
}); 
});

</script>

这是我的下拉 HTML 代码

  <select id="mySelect"> 
          <option>loading</option> 
  </select> 
</div>


嗨,我想我通过修改代码发现了我的问题,现在弹出错误消息

声明“TypeError:无法读取 null 的属性‘documentElement’”##

$(document).ready(function(){
$.ajax({
    url: "http://www.mobwebservice/url.asmx/countryList",
    type: "POST",
    dataType: "xml",
    data: soapMessage,
    processData: false,
    ContentType: "text/xml; charset=utf-8",
    success: function (xml) {
    //var xml = '<NewDataSet>  <Table>    <detail>     <country country_sk="2"currency_sk="165" country_name="Afghanistan" country_telecom_code="93  " country_code="AF" />     <country country_sk="5" currency_sk="166" country_name="Albania" country_telecom_code="355 " country_code="AL" />     <country country_sk="62" currency_sk="167" country_name="Algeria" country_telecom_code="213  " country_code="DZ" />    </detail>  </Table></NewDataSet>';
    var select = $('#mySelect');
    $(xml).find('country').each(function(){
    var value = $(this).attr('country_name');
    select.append("<option value='"+ value +"'>"+value+"</option>"); //SHould be value
    });

 select.val("-1"); //<-- Just use val
    },
    error:
    function (XMLHttpRequest, textStatus, errorThrown) {
    alert('Fail');
    alert(errorThrown);
    }
}); 
});

我添加了错误功能。所以我得到一个弹出

TypeError:无法读取 null 的属性“documentElement”请帮我解决这个错误

4

1 回答 1

0

您的值在名为 value 的 de 变量中,而不是 country_name

 select.append("<option value='"+ value +"'>"+value+"</option>");
于 2013-05-25T03:28:39.397 回答