- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 SSIS 从 JotForm 表单中检索数据,它仅在获得响应时有效,但数据非常困惑,需要反序列化。下面是一个响应示例(我在脚本中放置了一个断点,并将值复制到记事本中);
"{\"responseCode\":200,\"message\":\"success\",\"content\":[{\"id\":\"555555555555555555\",\"form_id\":\"2222222222222222\",\"ip\":\"195.195.176.147\",\"created_at\":\"2022-02-09 07:04:52\",\"status\":\"ACTIVE\",\"new\":\"1\",\"flag\":\"0\",\"notes\":\"\",\"updated_at\":null,\"answers\":{\"1\":{\"name\":\"standardForm\",\"order\":\"1\",\"text\":\"Standard Form Template UNIT-e\",\"type\":\"control_head\"},\"2\":{\"name\":\"submit2\",\"order\":\"20\",\"text\":\"Submit\",\"type\":\"control_button\"},\"3\":{\"name\":\"familyName\",\"order\":\"2\",\"text\":\"Family Name\",\"type\":\"control_textbox\",\"answer\":\"Michael\"},\"4\":{\"name\":\"givenName\",\"order\":\"3\",\"text\":\"Given Name\",\"type\":\"control_textbox\",\"answer\":\"Myers\"},\"6\":
现在,如您所见,它非常困惑(无论如何对我来说),我要检索的是 givenName 和 familyName。我创建了一个脚本组件,下面是 main.cs 中的代码;
public override void CreateNewOutputRows()
{
System.Net.ServicePointManager.SecurityProtocol =
SecurityProtocolType.Tls12 |
SecurityProtocolType.Tls11 |
SecurityProtocolType.Tls;
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://mycompany.jotform.com/API/form/222222222222222222/submissions&apiKey=25555555xxxxxxxxxxx5555555");
client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
string APIUrl = string.Format("https://mycompany.jotform.com/API/form/222222222222222222/submissions&apiKey=25555555xxxxxxxxxxx5555555");
var response = client.GetAsync(APIUrl).Result;
if (response.IsSuccessStatusCode)
{
var result = response.Content.ReadAsStringAsync().Result;
var serializer = new JavaScriptSerializer();
var data = serializer.Deserialize<ResultAPI>(result);
Output0Buffer.AddRow();
Output0Buffer.FirstName = data.givenName;
Output0Buffer.Surname = data.familyName;
Console.WriteLine(result);
System.Diagnostics.Debug.WriteLine(result);
var json = JsonSerializer.Serialize(response);
Console.WriteLine(json);
System.Diagnostics.Debug.WriteLine(json);
}
}
我像这样创建了两个名为 Generic Response 和 ResultAPI 的类 (GenericResponse.cs);
namespace SC_98d911fb90f6449b86ed276a074f46c6
{
public class GenericResponse
{
public ResultAPI[] ListData { get; set; }
}
public class ResultGen
{
public GenericResponse Result { get; set; }
}
}
ResultAPI 类如下所示;
namespace SC_98d911fb90f6449b86ed276a074f46c6
{
public class ResultAPI
{
public string givenName { get; set; }
public string familyName { get; set; }
}
}
响应应该发送到我映射的平面文件目标 (.txt),但实际上没有发送任何内容。
如果您能帮我弄清楚这件事,我将不胜感激。
编辑:根据要求,JSON 响应如下所示(我只发布了第一部分,因为它超出了允许的字符限制);
"{\"responseCode\":200,\"message\":\"success\",\"content\":[{\"id\":\"555555555555555555\",\"form_id\":\"2222222222222222\",\"ip\":\"195.xxx.xxx.xxx\",\"created_at\":\"2022-02-09 07:04:52\",\"status\":\"ACTIVE\",\"new\":\"1\",\"flag\":\"0\",\"notes\":\"\",\"updated_at\":null,\"answers\":{\"1\":{\"name\":\"standardForm\",\"order\":\"1\",\"text\":\"Standard Form Template UNIT-e\",\"type\":\"control_head\"},\"2\":{\"name\":\"submit2\",\"order\":\"20\",\"text\":\"Submit\",\"type\":\"control_button\"},\"3\":{\"name\":\"familyName\",\"order\":\"2\",\"text\":\"Family Name\",\"type\":\"control_textbox\",\"answer\":\"Michael\"},\"4\":{\"name\":\"givenName\",\"order\":\"3\",\"text\":\"Given Name\",\"type\":\"control_textbox\",\"answer\":\"Myers\"},\"6\":{\"name\":\"title\",\"order\":\"4\",\"text\":\"Title\",\"type\":\"control_dropdown\",\"answer\":\"Dr\"},\"7\":{\"name\":\"gender\",\"order\":\"5\",\"text\":\"Gender\",\"type\":\"control_dropdown\",\"answer\":\"Male\"},\"8\":{\"name\":\"dateOf\",\"order\":\"6\",\"sublabels\":\"{\\\"day\\\":\\\"Day\\\",\\\"month\\\":\\\"Month\\\",\\\"year\\\":\\\"Year\\\",\\\"last\\\":\\\"Last Name\\\",\\\"hour\\\":\\\"Hour\\\",\\\"minutes\\\":\\\"Minutes\\\",\\\"litemode\\\":\\\"Date\\\"}\",\"text\":\"Date of Birth\",\"type\":\"control_datetime\",\"answer\":{\"day\":\"13\",\"month\":\"08\",\"year\":\"1963\"},\"prettyFormat\":\"13-08-1963\"},\"10\":{\"name\":\"nationality\",\"order\":\"7\",\"text\":\"Nationality\",\"type\":\"control_dropdown\",\"answer\":\"AMERICAN SAMOA [796\\/2]\"},\"11\":{\"name\":\"address\",\"order\":\"8\",\"sublabels\":\"{\\\"cc_firstName\\\":\\\"First Name\\\",\\\"cc_lastName\\\":\\\"Last Name\\\",\\\"cc_number\\\":\\\"Credit Card Number\\\",\\\"cc_ccv\\\":\\\"Security Code\\\",\\\"cc_exp_month\\\":\\\"Expiration Month\\\",\\\"cc_exp_year\\\":\\\"Expiration Year\\\",\\\"addr_line1\\\":\\\"Street Address\\\",\\\"addr_line2\\\":\\\"Street Address Line 2\\\",\\\"city\\\":\\\"City\\\",\\\"state\\\":\\\"State \\\\\\/ Province\\\",\\\"postal\\\":\\\"Postal \\\\\\/ Zip Code\\\",\\\"country\\\":\\\"Country\\\"}\",\"text\":\"Address\",\"type\":\"control_address\",\"answer\":{\"addr_line1\":\"17 Clover Avenue\",\"addr_line2\":\"Bethesda\",\"city\":\"Kent\",\"country\":\"United Kingdom\"},\"prettyFormat\":\"Street Address: 17 Clover Avenue<br>Street Address Line 2: Bethesda<br>City: Kent<br>Country: United Kingdom<br>\"},\"12\":{\"name\":\"emailAddress\",\"order\":\"10\",\"text\":\"Email Address\",\"type\":\"control_email\",\"answer\":\"mmyers@gmail.com\"},\"13\":{\"name\":\"telephoneNumber\",\"order\":\"11\",\"sublabels\":\"{\\\"country\\\":\\\"Country Code\\\",\\\"area\\\":\\\"Area Code\\\",\\\"phone\\\":\\\"Phone Number\\\",\\\"full\\\":\\\"Phone Number\\\",\\\"masked\\\":\\\"Please enter a valid phone number.\\\"}\",\"text\":\"Telephone Number\",\"type\":\"control_phone\",\"answer\":{\"country\":\"+44\",\"area\":\"7888\",\"phone\":\"167989\"},\"prettyFormat\":\"(+44) (7888) 167989\"},\"14\":{\"name\":\"mobileTelephone\",\"order\":\"12\",\"sublabels\":\"{\\\"country\\\":\\\"Country Code\\\",\\\"area\\\":\\\"Area Code\\\",\\\"phone\\\":\\\"Phone Number\\\",\\\"full\\\":\\\"Phone Number\\\",\\\"masked\\\":\\\"Please enter a valid phone number.\\\"}\",\"text\":\"Mobile Telephone Number\",\"type\":\"control_phone\",\"answer\":{\"country\":\"+44\",\"area\":\"7499\",\"phone\":\"90377\"},\"prettyFormat\":\"(+44) (7499) 90377\"},\"15\":{\"name\":\"applicationSession\",\"order\":\"13\",\"text\":\"Application Session\",\"type\":\"control_textbox\",\"answer\":\"2020AC\"},\"16\":{\"name\":\"uniteAgent\",\"order\":\"14\",\"text\":\"UNIT-e Agent reference\",\"type\":\"control_textbox\",\"answer\":\"IFCELS\"},\"17\":{\"name\":\"uniteProgramme\",\"order\":\"15\",\"text\":\"UNIT-e Programme code\",\"type\":\"control_textbox\",\"answer\":\"Q3EP\"},\"18\":{\"name\":\"entryYear\",\"order\":\"16\",\"text\":\"Entry year\",\"type\":\"control_textbox\",\"answer\":\"2021\"},\"19\":{\"name\":\"entryMonth\",\"order\":\"17\",\"text\":\"Entry month\",\"type\":\"control_textbox\",\"answer\":\"04\"},\"20\":{\"name\":\"entryPoint\",\"order\":\"18\",\"text\":\"Entry point\",\"type\":\"control_textbox\",\"answer\":\"1\"},\"26\":{\"name\":\"postalzipCode\",\"order\":\"9\",\"text\":\"Postal\\/Zip Code\",\"type\":\"control_textbox\",\"answer\":\"KT1 3ER\"},\"27\":{\"name\":\"uniqueID\",\"order\":\"19\",\"selectedField\":\"528c8b464b1a424916000004\",\"text\":\"Unique ID\",\"type\":\"control_autoincrement\",\"answer\":\"8TYZ2Y\"}}}"
非常感谢,
最佳答案
在您的情况下,您从 API
获得的 JSON
包含 JSON
中的 \
个字符,所以你需要反序列化,如下面的尝试所示。您的 Model
结构也将包含动态节点。
为此,您需要使用 Newtonsoft
程序包,它可以序列化和反序列化任何 .NET 对象。您可以通过 Visual Studio 中的 Nuget
管理器添加此包,或在您的项目中手动添加引用。
当您的 Answer
属性可以是 string
或 Answer
类类型时,我们还需要一个自定义转换器来处理您的情况。如果 Answer
是字符串,它将设置为 null 并进行相应处理。
一个工作示例:https://dotnetfiddle.net/yB1fIf
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
public class Program
{
public static void Main()
{
var myString=@" "; //omitted for breveity
var myDeserializedClass = JsonConvert.DeserializeObject<dynamic>(myString);
Root myDeserializedClass1 = JsonConvert.DeserializeObject<Root>(myDeserializedClass);
foreach(var items in myDeserializedClass1.content)
{
foreach(var items1 in items.answers.Values)
{
Console.WriteLine(items1.name);
//Console.WriteLine(items1.text);
}
}
}
}
public class AnswersData
{
public string name { get; set; }
public string order { get; set; }
public string sublabels { get; set; }
public string text { get; set; }
public string type { get; set; }
[JsonConverter(typeof(AnswerConverter))]
public Answer answer { get; set; }
public string prettyFormat { get; set; }
public string selectedField { get; set; }
public string full { get; set; }
}
public class Answer
{
public string full { get; set; }
}
public class Content
{
public string id { get; set; }
public string form_id { get; set; }
public string ip { get; set; }
public string created_at { get; set; }
public string status { get; set; }
public string @new { get; set; }
public string flag { get; set; }
public string notes { get; set; }
public object updated_at { get; set; }
public Dictionary<string,AnswersData> answers { get; set; }
}
public class ResultSet
{
public int offset { get; set; }
public int limit { get; set; }
public int count { get; set; }
}
public class Root
{
public int responseCode { get; set; }
public string message { get; set; }
public List<Content> content { get; set; }
public string duration { get; set; }
public ResultSet resultSet { get; set; }
}
public class AnswerConverter : JsonConverter<Answer>
{
public override Answer ReadJson(JsonReader reader, Type objectType, Answer existingValue, bool hasExistingValue, JsonSerializer serializer)
{
switch (reader.MoveToContentAndAssert().TokenType)
{
case JsonToken.Null:
case JsonToken.String:
return null;
default:
var alarm = hasExistingValue ? existingValue : (Answer)serializer.ContractResolver.ResolveContract(objectType).DefaultCreator();
serializer.Populate(reader, alarm);
return alarm;
}
}
public override bool CanWrite => false;
public override void WriteJson(JsonWriter writer, Answer value, JsonSerializer serializer) => throw new NotImplementedException();
}
public static partial class JsonExtensions
{
public static JsonReader MoveToContentAndAssert(this JsonReader reader)
{
if (reader == null)
throw new ArgumentNullException();
if (reader.TokenType == JsonToken.None) // Skip past beginning of stream.
reader.ReadAndAssert();
while (reader.TokenType == JsonToken.Comment) // Skip past comments.
reader.ReadAndAssert();
return reader;
}
public static JsonReader ReadAndAssert(this JsonReader reader)
{
if (reader == null)
throw new ArgumentNullException();
if (!reader.Read())
throw new JsonReaderException("Unexpected end of JSON stream.");
return reader;
}
}
输出:
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
standardForm
submit2
familyName
givenName
title
gender
dateOf
nationality
address
emailAddress
telephoneNumber
mobileTelephone
applicationSession
uniteAgent
uniteProgramme
entryYear
entryMonth
entryPoint
postalzipCode
uniqueID
关于c# - SSIS Http Get请求Json反序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71128236/
最近开始学习MongoDB。今天老师教了我们 mongoexport 命令。在练习时,我遇到了一个典型的问题,包括教练在内的其他同学都没有遇到过。我在我的 Windows 10 机器上使用 Mongo
我是 JSON Schema 的新手,读过什么是 JSON Schema 等等。但我不知道如何将 JSON Schema 链接到 JSON 以针对该 JSON Schema 进行验证。谁能解释一下?
在 xml 中,我可以在另一个 xml 文件中包含一个文件并使用它。如果您的软件从 xml 获取配置文件但没有任何方法来分离配置,如 apache/ngnix(nginx.conf - site-av
我有一个 JSON 对象,其中包含一个本身是 JSON 对象的字符串。我如何反序列化它? 我希望能够做类似的事情: #[derive(Deserialize)] struct B { c: S
考虑以下 JSON { "a": "{\"b\": 12, \"c\": \"test\"}" } 我想定义一个泛型读取 Reads[Outer[T]]对于这种序列化的 Json import
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 11 个月前关闭。 Improve
我的旧项目在 MySQL 中有 Standard JSON 格式的数据。 对于我在 JS (Node.js) 和 DynamoDB 中的全新项目,关于 Standard JSON格式: 是否建议将其转
JSON 值字符串、数字、true、false、null 是否是有效的 JSON? 即,是 true 一个有效的 JSON 文档?还是必须是数组/对象? 一些验证器接受这个(例如 http://jso
我有一个 JSON 字符串,其中一个字段是文本字段。这个文本字段可以包含用户在 UI 中输入的文本,如果他们输入的文本是 JSON 文本,也许是为了说明一些编码,我需要对他们的文本进行编码,以便它不会
我正在通过 IBM MQ 调用处理数据,当由 ColdFusion 10 (10,0,11,285437) 序列化时,0 将作为 +0.0 返回,它会导致无效的 JSON并且无法反序列化。 stPol
我正在从三个数组中生成一个散列,然后尝试构建一个 json。我通过 json object has array 成功了。 require 'json' A = [['A1', 'A2', 'A3'],
我从 API 接收 JSON,响应可以是 30 种类型之一。每种类型都有一组唯一的字段,但所有响应都有一个字段 type 说明它是哪种类型。 我的方法是使用serde .我为每种响应类型创建一个结构并
我正在下载一个 JSON 文件,我已将其检查为带有“https://jsonlint.com”的有效 JSON 到文档目录。然后我打开文件并再次检查,结果显示为无效的 JSON。这怎么可能????这是
我正在尝试根据从 API 接收到的数据动态创建一个 JSON 对象。 收到的示例数据:将数据解码到下面给出的 CiItems 结构中 { "class_name": "test", "
我想从字符串转换为对象。 来自 {"key1": "{\n \"key2\": \"value2\",\n \"key3\": {\n \"key4\": \"value4\"\n }\n
目前我正在使用以下代码将嵌套的 json 转换为扁平化的 json: import ( "fmt" "github.com/nytlabs/gojsonexplode" ) func
我有一个使用来自第三方 API 的数据的应用程序。我需要将 json 解码为一个结构,这需要该结构具有“传入”json 字段的 json 标签。传出的 json 字段具有不同的命名约定,因此我需要不同
我想使用 JSON 架构来验证某些值。我有两个对象,称它们为 trackedItems 和 trackedItemGroups。 trackedItemGroups 是组名称和 trackedItem
考虑以下案例类模式, case class Y (a: String, b: String) case class X (dummy: String, b: Y) 字段b是可选的,我的一些数据集没有字
我正在存储 cat ~/path/to/file/blah | 的输出jq tojson 在一个变量中,稍后在带有 JSON 内容的 curl POST 中使用。它运作良好,但它删除了所有换行符。我知
我是一名优秀的程序员,十分优秀!