不工作我已經創建了一個POST的WebAPI,我可以調用如下:的WebAPI的提琴手
<script type="text/javascript">
var TheData = {
Number: "7181112222",
Username: "myusername",
Password: "mypassword",
enable: "True",
};
$.ajax({
type: "POST",
cache: "False",
url: "http://www.######.com/someapi/api/SettingsConfig",
data: TheData
}).done(function (msg) {
alert(msg);
}).error(function (msg) {
alert('Fail');
});
</script>
當我運行這段代碼我會得到「成功」的警報。
當我在提琴手中運行此代碼... yipes!
POST http://www.######.com/someapi/api/SettingsConfig 數= 6464482035 &用戶名= metheuser &密碼= 9999 &啓用=真
404錯誤
爲什麼inconsistancy!