>>>>>> >>>> 创建视图: create view goodsavgview as select cat_id,avg(shop_price) as avgshop_price from goods group by cat_id 1.视图是什么? 答:视图是一个虚拟的表,没有实实在在的数据,是通过表运算得出的数据 特点:(1)表数据随原表数据的变动而变. (2)只有当视图表与原表一一对应时,才能被更…
Understanding Scroll Views 深入理解 scroll view 读书笔记 It may be hard to believe, but a UIScrollView isn't much different than a standard UIView. Sure, the scroll view has a few more methods, but those methods are really just facades of existing UIView…
django是mvt模式,其中v就是这个显示逻辑部分,简单来讲,view函数可以说是接收request,然后处理,返回response的主体函数. 对于一些简单的逻辑关系,可以用直接用函数模式来进行处理. def current_datetime(request): now = datetime.datetime.now() html = "<html><body>It is now %s.</body></html>" % now re…