首页 > 代码库 > beego实现web api接口
beego实现web api接口
1)程序代码:
/** * 类似beego版物联网首页产品数据的调用 */import (
"github.com/astaxie/beego"
"github.com/astaxie/beego/httplib"
)
type MainController struct {
beego.Controller
}
func (this *MainController) Get() {
str, _ := httplib.Get("http://shop.iotywl.com/tools/cms.ashx?cmdParam=Select_Product_List").String()
this.Data["JsonDatas"] = str
this.TplNames = "index.html"
}
2)视图代码:
<!DOCTYPE html><html> <head> <title>Beego</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script type="text/javascript" src="/static/js/jquery-1.9.1.min.js"></script> </head> <body> <ul id="html_data"></ul> </body> <script type="text/javascript"> var jsonDatas= "{{.JsonDatas}}";
$(function(){ var web_url = "http://shop.iotywl.com"; var image_url = "http://images.iotywl.com" var list=eval(jsonDatas); var strTemp = "";
for (var i = 0; i < list.length; i++) { strTemp += "<li><a href=http://www.mamicode.com/"" + web_url + "/Product/ProductDetail/" + list[i].Id + "\" target=\"_blank\"><img src=http://www.mamicode.com/"" + image_url + list[i].SmallImage + "\" /><p>" + list[i].Title + "</p></a></li>"; } $("#html_data").html(strTemp); }) </script></html>
---童飞
beego实现web api接口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。