我試圖從數據虛擬化視圖中使用JQuery中的webservices檢索值列表。這是我現在所掌握的,並且我從alert(xhr.error)中得到了。你們能幫助我解決任何我可能忽略的明顯事情嗎?非常感謝使用webservice調用獲取項目
<script src="/jquery-1.11.1.js"></script>
<script src="/jquery.SPServices-2014.02.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$.ajax({
type: "POST",
url: "http://xxx/soap11/ValidateSourceCode?wsdl",
username: "xyz",
password: "xyz",
dataType: "xml",
data: {},
processData: false,
contentType:"text/xml; charset=\"utf-8\"",
success: function (msg) {
alert($(msg).text());
//console.log($(msg).text());
},
error: function(xhr, status, error){
alert(xhr.status);
alert(xhr.error);
}
}); });
</script>
似乎'xhr.error'是一個'function'。嘗試用'xhr.error()' – Red
取代它或者或許警告錯誤參數:'alert(error)' 同樣在成功處理程序'alert(msg)'而不是'$(msg).text() '。 –