我是ftl(freemarker模板)的新手。我有一个.ftl文件,我试图访问我自己定义的类型,Foo只包含两个int变量。出于调试目的,有没有办法可以打印我在ftl中使用的对象的类型。虽然我知道它确实是Foo。但是如果有太多用户定义的类型,并且ftl中使用的模型的名称不是自我建议,那么我的方法是什么?
由于
答案 0 :(得分:0)
假设def centerWindow(width=300, height=200):
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
x = (screen_width / 2) - (width / 2)
y = (screen_height / 2) - (height / 2)
root.geometry('%dx%d+%d+%d' % (width, height, x, y))
root = tkinter.Tk()
centerWindow(310, 375)
root.resizable(False,False)
loginWindow(root)
root.mainloop(
不是Foo
,List
等,只是一个普通的对象,请尝试Map
,甚至是${foo.class}
,它们会调用{ {1}}。