當我使用下面的代碼發出請求我的C#方法沒有得到任何數據:
$http({
method : 'POST',
url : ...,
data : {
test : 'hello'
})
.then(function (result) {
console.log('success')
}, function() {
console.log('error')
})
在調試模式下,我能夠打的方法,但沒有數據與傳遞請求。
顯示你的C#方法請 –
嘗試'數據:JSON.Stringify( {test:'hello'})'。什麼是測試/ –