c# 대상과 json 상호 전환
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.Web.Script.Serialization;
namespace JsonDemo
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.
// NOTE: In order to launch WCF Test Client for testing this service, please select Service1.svc or Service1.svc.cs at the Solution Explorer and start debugging.
public class Service1 : IService1
{
public void DoWork()
{
}
/// <summary>
/// 1) json (user)
/// 2)
/// 3) json
/// </summary>
/// <param name="_userJson"> json </param>
/// <returns> json </returns>
public string GetUser(string _userJson)
{
string resultJson = "";
try
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
User user = serializer.Deserialize<User>(_userJson);
using (DataUserDataContext du = new DataUserDataContext())
{
if (user.id != 0)
{
User item = du.Users.SingleOrDefault(u => u.id.Equals(user.id));
if (item != null)
{
resultJson = serializer.Serialize(item);
}
}
}
}
catch (Exception ex)
{
}
return resultJson;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콘텐츠 SaaS | JSON 스키마 양식 빌더Bloomreach Content를 위한 JSON Form Builder 맞춤형 통합을 개발합니다. 최근 Bloomreach Content SaaS는 내장 앱 프레임워크를 사용하여 혁신적인 콘텐츠 유형 필드를 구축할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.