摘要:
// Flashes returns a slice of flash messages from the session.//// A single variadic argument is accepted, and it is optional: it defines// the flash key. If not defined "_flash" is used by default.func (s *Session) Flashes(vars ...string) []interface{} { var flashes []interface{} key := f 阅读全文
摘要:
location.href 这个赋值以后就会页面跳转了。 浏览器缓存会记住原来的值,到时候会进行N次MD5加密,所以把明文的,和加密的分开tr 一行 td是一个数据 th是数据头$("#loginForm").submit(function(event){ event.preventDefault(); // Get some values from elements on the page: var $form = $( this ), account = $form.find( "input[name='account']" ).va 阅读全文
摘要:
ajax 动态加载的内容,相应的js也要在回调里加载,不然之前已经写好的监听函数,其实没有绑定到后来动态加载的元素上的,所以要写成回调的形式比如:$(".getStudent").click(function(event){ console.log($(this)); var account = $(this).attr("target") $.ajax({ url: '/getStudent', type: 'POST', dataType: 'html', da... 阅读全文
摘要:
http://stackoverflow.com/questions/10199219/go-template-functionhttp://stackoverflow.com/questions/15209236/multiple-templates-with-funcmaphttps://groups.google.com/forum/#!topic/golang-nuts/0Q-r_EkCPgk总之解决方法就是,以首个文件的basename作为模板的名字就可以解决了。例子func TestFuncMap(T *testing.T){ //os.Chdir("controller 阅读全文