最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - var.replace not a function - Stack Overflow

matteradmin6PV0评论

I am getting the error "id.replace is not a function"

Below is what I believe the relevant code is. I am missing something obvious, but my brain is currently mush.

getSyncDbFile: function (config, id) {
    if (id === null)
    {
        .synckolab.tools.logMessage("Error: entry has no id (" +config.name + ": " + config.type + ")", .synckolab.global.LOG_ERROR);
        return null;
    }

    .synckolab.tools.logMessage("syncDbFile:  (" +.synckolab.tools.text.fixNameToMiniCharset(config.serverKey) + "/" + config.type + "_" + config.name + "/" + id + ")", .synckolab.global.LOG_ERROR);

    id = id.replace(/[ :.;$\\\/]\#\@/g, "_");
    var file = Components.classes["@mozilla/file/directory_service;1"].getService(Components.interfaces.nsIProperties).get("ProfD", Components.interfaces.nsIFile);
    try {
        file.append("synckolab");
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }

        file.append(.synckolab.tools.text.fixNameToMiniCharset(config.serverKey));
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }


        file.append(config.type + "_" + config.name);
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }

        file.append(id);
    }
    catch (ex)
    {
        .synckolab.tools.logMessage("Problem with getting syncDbFile:  (" +.synckolab.tools.text.fixNameToMiniCharset(config.serverKey) + "/" + config.name + ": " + config.type + ": " + id + ")\n" + ex, .synckolab.global.LOG_ERROR);
        return null;
    }
    return file;
}

I am getting the error "id.replace is not a function"

Below is what I believe the relevant code is. I am missing something obvious, but my brain is currently mush.

getSyncDbFile: function (config, id) {
    if (id === null)
    {
        .synckolab.tools.logMessage("Error: entry has no id (" +config.name + ": " + config.type + ")", .synckolab.global.LOG_ERROR);
        return null;
    }

    .synckolab.tools.logMessage("syncDbFile:  (" +.synckolab.tools.text.fixNameToMiniCharset(config.serverKey) + "/" + config.type + "_" + config.name + "/" + id + ")", .synckolab.global.LOG_ERROR);

    id = id.replace(/[ :.;$\\\/]\#\@/g, "_");
    var file = Components.classes["@mozilla/file/directory_service;1"].getService(Components.interfaces.nsIProperties).get("ProfD", Components.interfaces.nsIFile);
    try {
        file.append("synckolab");
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }

        file.append(.synckolab.tools.text.fixNameToMiniCharset(config.serverKey));
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }


        file.append(config.type + "_" + config.name);
        if (!file.exists()) {
            file.create(1, parseInt("0775", 8));
        }

        file.append(id);
    }
    catch (ex)
    {
        .synckolab.tools.logMessage("Problem with getting syncDbFile:  (" +.synckolab.tools.text.fixNameToMiniCharset(config.serverKey) + "/" + config.name + ": " + config.type + ": " + id + ")\n" + ex, .synckolab.global.LOG_ERROR);
        return null;
    }
    return file;
}
Share Improve this question asked Sep 18, 2012 at 17:03 user1514992user1514992 333 silver badges8 bronze badges 1
  • 1 What is the type of id? it must be a string. – Anoop Commented Sep 18, 2012 at 17:05
Add a ment  | 

3 Answers 3

Reset to default 2

As others have pointed out, id needs to be a string. We have no hint as to what type it is.

Just before the line

id = id.replace(/[ :.;$\\\/]\#\@/g, "_");

Add these two lines:

console.log(id);
console.log(typeof id);

That will let us know what those are and if the right values are being passed.

Have You tried it??

id = String(id).replace(/[ :.;$\\\/]\#\@/g, "_"); 

I think this will work. Since replace is a String Function.

Note: by using this method, it will give a boolean results rather than return a string.

Change :

id.replace(/[ :.;$\\\/]\#\@/g, "_");

to:

(id+"").replace(/[ :.;$\\\/]\#\@/g, "_");
Post a comment

comment list (0)

  1. No comments so far