1 Star 0 Fork 204

armfans/goAdapter

forked from shiyin1211/openGW 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
routerRemotePlatform.go 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
shiyin1211 提交于 2020-06-28 18:15 . 创建工程
package main
import (
"encoding/json"
"fmt"
"github.com/gin-gonic/gin"
"net/http"
)
func apiGetRemotePlatformParam(context *gin.Context){
aParam := struct{
Code string
Message string
Data RemotePlatformTemplate
}{"0","",*remotePlatform}
sJson,_ := json.Marshal(aParam)
context.String(http.StatusOK,string(sJson))
}
func apiSetHTTPParam(context *gin.Context){
aParam := struct{
Code string `json:"Code"`
Message string `json:"Message"`
Data string `json:"Data"`
}{
Code:"1",
Message:"",
Data:"",
}
bodyBuf := make([]byte,1024)
n,_ := context.Request.Body.Read(bodyBuf)
fmt.Println(string(bodyBuf[:n]))
//获取写寄存器的参数
rHttpParam := &HttpRemoteTemplate{}
err := json.Unmarshal(bodyBuf[:n],rHttpParam)
if err != nil {
fmt.Println("rHttpParam json unMarshall err,",err)
aParam.Message = "json unMarshall err"
sJson,_ := json.Marshal(aParam)
context.String(http.StatusOK,string(sJson))
return
}
aParam.Code = "0"
sJson,_ := json.Marshal(aParam)
context.String(http.StatusOK,string(sJson))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/armfans/goAdapter.git
git@gitee.com:armfans/goAdapter.git
armfans
goAdapter
goAdapter
master

搜索帮助