未定义的对象方法

时间:2013-04-25 09:54:48

标签: javascript

我有这个代码,因为我使用display方法,它一直给我:

网址未定义

名称未定义

描述未定义

我不知道为什么我会收到错误,即使我提供它将是所有的礼节。有人可以帮我找出问题吗?

function website(name,url,description)
{
    //Proparties
    this.name=name;
    this.url=url;
    this.description=description;

    // Methods
    this.getName=getName;
    this.getUrl=getUrl;
    this.getDescription=getDescription;
    this.display=display;

    // GetName Method
    function getName(name)
    {
        this.getName=name;
    }

    // GetUrl Method
    function getUrl(url){
        this.getUrl=url;
    }

    // getDescription
    function getDescription(description){
        this.getDescription=description;
    }

    function display(name,url,description){
        alert("URL is :" +url +" Name Is :"+name+" description is: "+description);
    }
}

// Set Object Proparites
web=new website("mywebsite","http://www.mywebsite.com","my nice website");

// Call Methods
var name = web.getName("mywebsite");
var url = web.getUrl("http://www.mywebsite.com");
var description = web.getDescription("my nice website");
web.display(name,url,description);

6 个答案:

答案 0 :(得分:2)

我认为你对功能如何运作感到非常困惑。在您的代码中,您有:

this.getName=getName; // this sets a "getName" method on the "this" object
// to be some function that will be implemented below

function getName(name) // i believe this function shouldn't have any parameter...
{
this.getName=name; //now, you're overriding the "getName" that you set above,
// to be something completely different: the parameter you sent when calling this function!
// instead, you should do:
return name;
}

答案 1 :(得分:1)

你想写这个吗? :

function setName(name)
{
    this.name=name;
}

据我所知,你正在设定,而不是获得财产。所以:

var name = web.setName("mywebsite");

答案 2 :(得分:1)

我应该声明为

function () {
  //property
  this.name

  //method
  this.setName = function ( name ) {
  this.name = name
  }
}

他们实现它的方式,请求上下文问题

答案 3 :(得分:1)

你的getter函数是覆盖自己的setter(?)。将它们更改为

function getName(){
    return this.name;
}
function getUrl(){
    return this.url;
}
function getDescription(){
    return this.description;
}

function setName(name){
    this.name = name;
}
function setUrl(url){
    this.url = url;
}
function setDescription(description){
    this.description = description;
}

如果您希望自己的设置者返回设定值,请在作业前添加return个关键字。

答案 4 :(得分:1)

你的吸气剂应该返回一个值而不是重新分配吸气剂本身,例如

function getName() {
  return this.name;
}

答案 5 :(得分:0)

您应该在每个方法上按以下方式返回值:

// GetName Method
function getName() {
    return this.getName = name;
}

// GetUrl Method
function getUrl() {
    return this.getUrl = url;
}

// GetDescription Method
function getDescription() {
    return this.getDescription = description;
}