我是angularjs中的新成員。我試圖通過$ http post發佈一些數據到服務器。我的代碼可能會到達服務器,但數據不會傳遞。我使用golang作爲後端。我在這裏犯了什麼錯誤?
completeCampaign.controller('campaignCtrl', ['$scope', '$http', function(scope, http) {
var Msg = "hai";
http.post("/server_url",Msg).then(function(response) {
console.log(response);
});
}]);
Go代碼:
func (c *CarController) TestFunction() {
msg := c.GetString("Msg")
fmt.Println("Message is: ", msg)
}
輸出:
Message is:
你得到的「消息」,而不是在服務器的身體可能 – Alessio