Bu koda sahip olduğumda
$.ajax({
type: 'POST',
//contentType: "application/json",
url: 'http://localhost:16329/Hello',
data: { name: 'norm' },
dataType: 'json'
});
Fiddler'da şu ham isteği görebiliyorum
POST http://localhost:16329/Hello HTTP/1.1
Host: localhost:16329
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: application/json, text/javascript, */*; q=0.01
Accept-Language: ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: http://localhost:14693/WebSite1/index.html
Content-Length: 9
Origin: http://localhost:14693
Pragma: no-cache
Cache-Control: no-cache
name=norm
Fakat benim çalışıyorum den ayarlanan içerik tipine olduğu uygulamanın / x-www-form-urlencoded için uygulama / json . Ama bu kod
$.ajax({
type: "POST",
contentType: "application/json",
url: 'http://localhost:16329/Hello',
data: { name: 'norm' },
dataType: "json"
});
Garip istek üretiyor (Fiddler'da görebildiğim)
OPTIONS http://localhost:16329/Hello HTTP/1.1
Host: localhost:16329
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Connection: keep-alive
Origin: http://localhost:14693
Access-Control-Request-Method: POST
Access-Control-Request-Headers: content-type
Pragma: no-cache
Cache-Control: no-cache
Neden? Orada POST olması gerektiğinde OPTIONS nedir? Ve içerik türüm nerede application / json olarak ayarlandı? Ve bazı nedenlerden dolayı istek parametreleri gitti.
GÜNCELLEME 1
Sunucu tarafında gerçekten basit RESTful hizmetim var.
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class RestfulService : IRestfulService
{
[WebInvoke(
Method = "POST",
UriTemplate = "Hello",
ResponseFormat = WebMessageFormat.Json)]
public string HelloWorld(string name)
{
return "hello, " + name;
}
}
Ancak bazı nedenlerden dolayı bu yöntemi parametrelerle arayamıyorum.
GÜNCELLEME 2
Bu kadar uzun cevap vermediğim için üzgünüm.
Bu üstbilgileri sunucu yanıtıma ekledim
Access-Control-Allow-Origin: *
Access-Control-Allow-Headers: Content-Type
Access-Control-Allow-Methods: POST, GET, OPTIONS
Yardımcı olmadı, Yönteme sunucudan izin verilmedi .
İşte kemancımın söylediği
Artık sunucumun POST, GET, OPTIONS kabul ettiğinden emin olabilirim (yanıt başlıkları beklediğim gibi çalışıyorsa). Ama neden "Yönteme izin verilmiyor"?
Sunucudan gelen WebView yanıtında ( yukarıdaki resimde Ham yanıtı görebilirsiniz ) şuna benzer