0
對不起,我的英語JSON發送到另一臺服務器。使用asp.net mvc的核心C#
我需要JSON發送到另一臺服務器。
例子:127.0.0.1/api/start
在這個其他的服務器我有我創建運行服務,服務需要得到一個JSON
示例{「SERVERID」:「1」 「ServerPort」: 「27015」}
我怎樣才能做到這一點?
我知道用jQuery發送JSON,但我想知道如何不使用jQuery做到這一點使用asp.net核心。有可能嗎?
public IActionResult Start()
{
// Code here
return View();
}
我需要使用asp.net核心做這個代碼
var arr = { ServerId : '1', ServerPort : '27015'};
console.log(JSON.stringify(arr));
return jQuery.ajax({
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
'type': 'POST',
'url': '13.77.102.81/Api/MTA/Start',
'data': JSON.stringify(arr),
'dataType': 'json',
'success': function (msg) {
console.log(msg);
}
});
HM ..但IP,我需要發送JSON是13.77.102.81,不要暴露你的IP這裏我具體該? –
更準確的說是要送13.77.102.81/api/mta/start –
或您的服務發送GET請求?有兩件事 –