如何避免 jquery ajax 中使用 wcf 服务的跨域策略?
如何避免 jquery ajax 中使用 wcf 服务的跨域策略?
我需要在 web.config 中对跨域策略进行哪些更改?
how to avoid cross domain policy in jquery ajax for consuming wcf service??
What chages do i need to do in web.config for cross domain policy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您希望从 javascript 到 WCF 进行跨域调用,则必须使用 JSONP。要向 WCF 添加 JSONP 支持,您必须在
WebHttpBinding
中定义它。配置应如下所示:对于 jQuery 部分,请检查例如 本文。
If you want cross domain calls from javascript to WCF you must use JSONP. To add JSONP support to WCF you must define it in
WebHttpBinding
. The configuration should look like:For jQuery part check for example this article.
我使用 JQuery (1.5.1) $.ajax CrossDomain 设置设置为 true 使其工作。
我还不明白的是,为什么在 WCF (.NET4) 服务上使用属性 [ScriptMethod(ResponseFormat = ResponseFormat.Json)] 时,在没有跨域设置(到 web.config 和 $. ajax),当使用属性 [WebGet(ResponseFormat = WebMessageFormat.Json)] 时,它需要 webconfig 和 $.ajax 调用中的跨域设置。如果我在没有跨域设置的情况下使用 WebGet 属性,我将收到“不允许使用方法”错误。
使用WCF代码:
有什么想法吗?
I got it to work using the JQuery (1.5.1) $.ajax CrossDomain setting set to true.
What I don't understand yet is why it is that when using the attribute [ScriptMethod(ResponseFormat = ResponseFormat.Json)] on the WCF (.NET4) service, the call succeeds without the crossdomain setting (to web.config and $.ajax) and when using the attribute [WebGet(ResponseFormat = WebMessageFormat.Json)] it requires the crossdomain settings in webconfig and $.ajax call. If I use WebGet attribute without the crossdomain settings I'll get an "Method Not Allowed" error.
WCF code is used:
any ideas?
chrome/firefox 不会让我这样做,直到我
在通话中明确设置
chrome/firefox wouldn't let me do this until i explicitly set
in my calls