码迷,mamicode.com
首页 > 其他好文 > 详细

前端操作记录记录

时间:2014-07-21 12:18:33      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:function   public   produces   method   return   

  function log(msg) {
            var i = new Image();
            i.src = "http://127.0.0.1/log?msg=" + msg;
        }
@RequestMapping(value = { "/log" }, produces = { "application/json" }, method = { RequestMethod.GET }, params = { "msg" })
	public Model log(Model model, String msg) {
		System.out.println(msg);
		model.addAttribute(msg);
		return model;
	}


本文出自 “天空海阔” 博客,请务必保留此出处http://ether007.blog.51cto.com/8912105/1440610

前端操作记录记录

标签:function   public   produces   method   return   

原文地址:http://ether007.blog.51cto.com/8912105/1440610

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!