我正在尝试调用我的 WCF 服务,并且正在使用 jQuery 的 AJAX。除非我弄错了,否则问题似乎出在我尝试以 JSON 格式取回该数据时。我不确定 URL 是否正确。
这是我的 service.svc.cs。我想调用 AddNewQuery
//------------------------------------------------------------------------------
// <copyright file="WebDataService.svc.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Data.Services;
using System.Data.Services.Common;
using System.Linq;
using System.ServiceModel.Web;
using System.Web;
using System.Net;
using System.Data.Objects;
using System.Data.Entity;
using System.Net.Http;
using System.Web.Http;
using System.Web;
using System.ServiceModel.Web;
namespace BRADAPI
{
[JSONPSupportBehavior]
[System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class Service1 : System.Data.Services.DataService<BradOnlineEntities>
{
// This method is called only once to initialize service-wide policies.
public static void InitializeService(DataServiceConfiguration config)
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
config.SetEntitySetAccessRule("*", EntitySetRights.All);
config.UseVerboseErrors = true;
config.SetServiceOperationAccessRule("AddNewQuery", ServiceOperationRights.All);
config.SetServiceOperationAccessRule("GetQueryByID", ServiceOperationRights.All);
config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V3;
}
protected override void OnStartProcessingRequest(ProcessRequestArgs args)
{
base.OnStartProcessingRequest(args);
//Cache for a minute based on querystring
HttpContext context = HttpContext.Current;
HttpCachePolicy c = HttpContext.Current.Response.Cache;
c.SetCacheability(HttpCacheability.ServerAndPrivate);
c.SetExpires(HttpContext.Current.Timestamp.AddSeconds(60));
c.VaryByHeaders["Accept"] = true;
c.VaryByHeaders["Accept-Charset"] = true;
c.VaryByHeaders["Accept-Encoding"] = true;
c.VaryByParams["*"] = true;
}
[WebGet]
public IQueryable<tblContactQuery> GetQueryByID(Guid QueryID)
{
IQueryable<tblContactQuery> biglist = (from c in this.CurrentDataSource.tblContactQueries where c.QueryID.Equals(QueryID) select c);
return biglist;
}
[WebGet]
public IQueryable<tblContactQuery> AddNewQuery(string QueryText, string UserID)
{
// Make NULL to remove compile errors
Guid GUserID = Guid.Parse(UserID);
Guid QueryID = Guid.NewGuid();
tblContactQuery C = new tblContactQuery
{
QueryID = QueryID,
UserID = GUserID,
QueryText = QueryText,
};
try
{
this.CurrentDataSource.tblContactQueries.Add(C);
this.CurrentDataSource.SaveChanges();
return GetQueryByID(QueryID);
}
catch
{
return GetQueryByID(QueryID);
}
}
}
}
我的 JS 代码
function sendQuery() {
userId = $("#hdnUserId").val();
contactId = $("#hdnContactId").val();
txtQuery = $('#txtQuery').val();
var successFlag;
$.ajax({
url: url,
data: "UserID='" + userId + "'&" + "QueryText='" + txtQuery + "'&" + "ContactID='" + contactId + "'",
type: "GET",
async: false,
datatype: "json",
success: function (data) {
successFlag = 1;
},
error: function (data) {
successFlag == 0;
}
});
if (successFlag == 1) {
alert("Thank you, your query has been sent to a member of the Alf team");
$("#dialog").css("display", "false");
$("#dialog").dialog("close");
}
else if (successFlag == 0) {
alert("Query not sent to the ALF team");
$("#dialog").css("display", "false");
$("#dialog").dialog("close");
}
}
我的成功和错误块没有受到打击,因为它没有打击服务。所以这不是成功或失败。
更改我的 URL 的任何提示?