6
Jquery Ajax การโพสต์ json ไปที่ webservice
ฉันพยายามโพสต์วัตถุ JSON ไปยังเว็บเซอร์ asp.net json ของฉันมีลักษณะเช่นนี้: var markers = { "markers": [ { "position": "128.3657142857143", "markerPosition": "7" }, { "position": "235.1944023323615", "markerPosition": "19" }, { "position": "42.5978231292517", "markerPosition": "-3" } ]}; ฉันใช้ json2.js เพื่อ stringyfy วัตถุ json ของฉัน และฉันใช้ jquery เพื่อโพสต์ไว้ในเว็บเซอร์ของฉัน $.ajax({ type: "POST", url: "/webservices/PodcastService.asmx/CreateMarkers", data: markers, contentType: "application/json; …
238
jquery
ajax
web-services
json