面向对象的JavaScript:你会怎么做?

前端之家收集整理的这篇文章主要介绍了面向对象的JavaScript:你会怎么做?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

因为我已经更好地了解了JS,我已经从程序风格转变为半OO(不要问我的意思是什么:基本上是混乱!)但是现在我想开始正确地使用它. OO吸引了我的编码大脑.

但是,我正在努力开发一个学校周的图书馆,我不确定我最好怎么做.

如果我只是使用几周的数组,它们看起来像这样:

    WeeksArray[36].StartDate = "2011-09-05";
    WeeksArray[36].EndDateSchool = "2011-09-09";
    WeeksArray[36].EndDateProper = "2011-09-11";
    WeeksArray[36].JSDate = new Date ( 2011,8,05 );
    WeeksArray[36].Type = "1";
    WeeksArray[36].Label = "Week 36: 5th Sept 2011";

>关键:根据学校日历的周数
> StartDate / EndDate:与MysqL兼容的日期范围
> JSDate:JS开始日期的日期对象
>类型:学校时间表,第1周或第2周
>标签:表示星期开始的人类可读标签

我希望其他脚本可以访问此库,以便他们可以加载包含学校日历中所有周的数组或对象.例如,我想象一下,我的一个脚本会根据这些信息生成一个下拉菜单,显示“第36周:2011年9月5日”,点击后会向我的PHP脚本发送请求.然后sql数据库相应地过滤屏幕上的信息.注意:我不需要帮助实现后者,它只是上下文的一个例子.

我开始编码如下:

var LEAP = {}

LEAP.Schedule = {

    init: function() {
        this.setWeeks();
    }

    setWeeks: function() {
        var WeeksArray = [];

但是我看得越多,感觉就越不正确!

我应该创建“Week”对象,然后是一个容器,它有一个返回所有Week对象的方法吗?我一直在阅读John Resig的“Pro JavaScript Techniques”中的OOP章节,但事实是我不完全理解它.这感觉就像是正确的方法,但是对象中的对象正在伤害我的头脑.

最后的结果应该是我在我的一个页面上包含这个脚本,然后可以使用像var WeeksArray = LEAP.Schedule.getWeeks();这样的东西,但即便如此我也不确定这是否真实?

我很困惑……! :D对此主题的任何帮助将非常感激.

最佳答案
setWeeks: function(){
  var WeeksArray = []; //This variable is private,which is probably not your desired result.
}

^那不起作用,请参阅评论.

我推荐这样的东西:
外部文件

var LEAP = {};
LEAP.Schedule = function(){//init
  //all events which should only occur once should be called here
  //Create the initial objects,e.g.
  this.weeks = [];
  this.calculateWeeks();
}
LEAP.Schedule.protoype.calculateWeeks = function(){
  for (var i=0; i<52; i++){
    this.weeks.push(Math.random()); //For the sake of the example ;)
  }
}
LEAP.Schedule.prototype.getWeeks = function(){
  return this.weeks;
}

文件

var Scheduleobject = new LEAP.Schedule();
var weeks = Scheduleobject.getWeeks();

对我来说,这感觉就像一个非常自然的OOP方法.
您甚至可以更改LEAP.Schedule函数,使其根据情况立即返回Weeks数组.

编辑

周课程的一个例子:

LEAP.Schedule.week = function(n_year,n_month,n_day,n_week){
  //add code to validate the input
  //...
  //finished validating,processing:
  this.year = n_year;
  this.month = n_month;
  this.day = n_day;
  this.week = n_week;
}
LEAP.Schedule.week.protoype.getStartDate = function(){
  return year + "-" + pad(month) + "-" + pad(day);
}
//LEAP.Schedule.week.prototype.*Date are defined in a similar way
//The "EndDateSchool" and "EndDateProper" variables always follow the same pattern. Reduce the number of unnecessary variables by calculating these variables in the prototype function.
LEAP.Schedule.week.prototype.getLabel = function(){
  return "week" + this.week + ": " + this.day + (day==1||day==21||day==31?"st":day==2||day==22?"nd":day==3||day==23?"rd":"th") + " " + ["jan","feb","mar","etc"][this.month-1] + " " + this.year;
}
function pad(n){return n>9?n:"0"+n}//a simple function to add a zero for your specific cases.

可以通过这种方式调用星期类:

var week = new Schedule.Week(2011,5,36); //or this.Week(2011,36) from the contex of the class.
var startDate = week.getStartDate(); //example`

猜你在找的JavaScript相关文章