博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
model.js
阅读量:5139 次
发布时间:2019-06-13

本文共 872 字,大约阅读时间需要 2 分钟。

var Model = {

inherited: function  () {},created: function () {},prototype: {    init: function (attrs){        if(attrs){            this.load(attrs);        }    },    load: function  (attrs) {        for(var name in attrs){            this[name] = attrs[name];        }    }},create: function (){    var object = Object.create(this);    object.parent = this;    object.prototype = object.fn = Object.create(this.prototype);    object.created();    this.inherited(object);    return object;},init: function(){    var instance = Object.create(this.prototype);    instance.parent = this;    instance.init.apply(instance, arguments);    return instance;},find: function  () {    },extend: function  (o) {    var extended = o.extended;    }

}

var Asset = Model.create();

var User = Model.create();

var user = User.init();

转载于:https://www.cnblogs.com/lanse-yan/p/3977701.html

你可能感兴趣的文章
Redis 常用数据结构命令
查看>>
软件工程课堂作业
查看>>
OpenFire 的安装和配置
查看>>
web.config详解
查看>>
ZJOI2018游记Round1
查看>>
侧边栏广告和回到顶部
查看>>
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
【转】从头到尾彻底理解KMP
查看>>
ios应用版本号设置规则
查看>>
海上孤独的帆
查看>>
error: more than one device and emulator 问题解决
查看>>
Java基础:容器
查看>>
YUV摘要格式
查看>>
【方法2】删除Map中Value反复的记录,而且仅仅保留Key最小的那条记录
查看>>
C# CheckedListBox控件的使用方法
查看>>
【HDOJ】2007平方和与立方和
查看>>
js中const,var,let区别
查看>>
力扣(LeetCode) 1010. 总持续时间可被 60 整除的歌曲
查看>>
冒泡排序
查看>>
NoNodeAvailableException[None of the configured nodes are available
查看>>