如何从 WCP 请求中返回 JsonP?
Posted
技术标签:
【中文标题】如何从 WCP 请求中返回 JsonP?【英文标题】:how to return JsonP from a WCP request? 【发布时间】:2017-11-19 10:11:00 【问题描述】:我想构建一个返回 JsonP 请求的 WCF 服务。我希望它返回以下内容,
jsonpCallback("fileNames":"IDR023.T.201705201412.png, IDR023.T.201705201418.png");
所以我创建了以下 WCF 服务
IBOM.cs
[ServiceContract]
public interface IBOM
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json)]
string GetData();
BOM.cs
public class BOM : IBOM
public string GetData()
return "jsonpCallback(\"fileNames\":\"IDR023.T.201705201412.png, IDR023.T.201705201418.png\");";
网络配置
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="BomService.BOM" behaviorConfiguration="ServiceBehaviour">
<!-- Service Endpoints -->
<!-- Unless fully qualified, address is relative to base address supplied above -->
<endpoint address ="" binding="webHttpBinding" contract="BomService.IBOM" behaviorConfiguration="web">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
</endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviour">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
但我要回来了
"jsonpCallback(\"fileNames\":\"IDR023.T.201705201412.png, IDR023.T.201705201418.png\");"
我正在返回一个字符串并尝试将其设置为返回我需要的内容。这是 JSONP 的最佳方式吗?还是有更好的方法来实现我所需要的
谢谢
【问题讨论】:
【参考方案1】:对于任何感兴趣的人,我已经解决了。这是代码。
国际移民组织
[服务合同] 公共接口 IBOM
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json)]
Stream GetData();
物料清单
public class BOM : IBOM
public Stream GetData()
string jsCode = "jsonpCallback" + "(\Test:\"" + fileNames + "\");";
WebOperationContext.Current.OutgoingResponse.ContentType = "application/javascript";
return new MemoryStream(Encoding.UTF8.GetBytes(jsCode));
【讨论】:
以上是关于如何从 WCP 请求中返回 JsonP?的主要内容,如果未能解决你的问题,请参考以下文章
返回 JSONP 的 Restful api 的节点 HTTP 请求
在vue中使用axios实现跨域请求并且设置返回的数据的格式是json格式,不是jsonp格式
如何通过 jQuery AJAX 从使用 OAuth 1.0 身份验证的 Upwork API 请求 JSONP 文件?