摘要: class UserType(models.Model): title = models.CharField( max_length=32 ) class Person(models.Model): user = models.CharField( max_length=32 ) ut = mode 阅读全文
posted @ 2018-04-02 23:50 山上有风景 阅读(870) 评论(0) 推荐(1) 编辑
摘要: 1.javascript中以函数来表示类: 一般函数是小写开头:function foo() 类开头是大写:function Foo() 实例化类: obj = new Foo() 其他属性就同类是一致的 与类的思想来考虑就出来结果了,干扰项都不是问题 再比如: 2.补充:this关键字 this代 阅读全文
posted @ 2018-04-02 22:16 山上有风景 阅读(2029) 评论(0) 推荐(1) 编辑