JQueryでwebservicesを使用してデータ仮想化ビューから値のリストを取得しようとしています。これは私が現在行っていることであり、私はをアラート(xhr.error)から取得しています。私が見落としている可能性のある明白な事柄を手伝ってくれますか?大いに感謝しますWebサービス呼び出しを使用して項目を取得する
<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'です。 'alert(error)' 同様に '$(msg).text()の代わりに' alert(msg) 'ハンドラでは、' xhr.error() 'と置き換えてみてください – Red
また、 '。 –