0

我正在将 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);
          }
        }
    });
4

1 回答 1

0

这是文本编辑器配置。

在 Drupal-8 中,“邮件文本”文本编辑器的“更正错误并截断 HTML”选项实际上对 XML 内容进行了疯狂处理。

在此处输入图像描述

于 2018-03-22T01:02:50.620 回答