我已经编写了 ETF 类。这是在 javascript 中编写 OOP 的尝试。
该类称为ETF。方法是getData和draw。我正在尝试从方法“getData”访问方法“draw”
function ETF(){
//global variable
}
//class methods => getData (from xml file), draw(draws the bar )
ETF.prototype ={
getData: function(is_load, DateDiff){
$.getJSON(
"server/ETF.server.php",{
mycase: 1
},
function(data){
lng_pr = data.longs_prec;
sh_pr = data.shorts_prec;
ETF.draw(lng_pr, sh_pr); // <== how to access the draw method?
});
},//end getData
//draw the
draw: function(lng_pr, sh_pr){
//draw code..
}
试过'this.draw'但没有..
任何人?