我正在将 xml 数据发布到在我的本地工作正常的服务器,但是在上传到服务器后,我希望它会破坏客户端的数据。
在我的本地服务器中请求有效负载
<ApiRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<ApiKey>xxxxxxxxxxx</ApiKey>
<Data xsi:type="Subscriber">
<Mode>AddAndUpdate</Mode>
<Force>true</Force>
<ListId>16</ListId>
<Email>abc@gmail.com</Email>
<Firstname>abc</Firstname>
<Lastname>cdf</Lastname>
</Data>
</ApiRequest>
上传到服务器后请求有效载荷
<ApiRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<ApiKey>xxxxxxxxxxx
<Data xsi:type="Subscriber">
<Mode>AddAndUpdate
<Force>true
<ListId>16
<Email>abc@gmail.com
<Firstname>abc
<Lastname>cdf
这是ExpertSender的集成。文件托管在 Acquia Cloud 中。
这个问题的可能性是什么?我该如何解决这个问题?
这是我的邮政电话代码,
var postData = '<ApiRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema"><ApiKey>xxxxxxx</ApiKey><Data xsi:type="Subscriber"><Mode>AddAndUpdate</Mode><Force>true</Force><ListId>16</ListId><Email>'+emailVal+'</Email><Firstname>'+firstnameVal+'</Firstname><Lastname>'+lastnameVal+'</Lastname><Properties><Property><Id>1</Id><Value xsi:type="xs:integer">'+telVal+'</Value></Property></Properties></Data></ApiRequest>';
var postUrl = 'https://api2.esv2.com/Api/Subscribers';
jQuery.ajax({
type: "POST",
url: postUrl,
data: postData,
contentType: "text/plain; charset=utf-8",
cache: false,
success: function(response) {
success.html(sucessMsg);
},
error: function(response) {
var xmlData = jQuery.parseXML( response.responseText );
var message = jQuery( xmlData ).find("Message").text();
if (message.search("Email is invalid")){
failed.html(errorMsg);
}else{
failed.html(message);
}
}
});