最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - "Cannot find function replace" errror when trying to replace part of a string - Stack Overflow

programmeradmin1浏览0评论

I need a way to replace part of a string with another string using Google Apps Script. I tested the following and it worked:

function test(){
  var value = '';
  var googleimageURL = googlePlus(value);
  Logger.log('Returned Result: ' + googleimageURL);
}

function googlePlus(value){
    var apiKey = ScriptProperties.getProperty('apiKey');
    var re = 'http://'
    var theURL = value;
    Logger.log('Google+ is called: ' + value);
    var replacingItem = 'https://';
    var theURL = theURL.replace(re, replacingItem);
    Logger.log('Google+ Values 2: ' + value + ' : ' + theURL + ' after ' + replacingItem);
    return imageURL;
}

But, when I embedded into the following code, it did not work. Any idea?

  //If a Google+ column was not specified,put a flag.
  if (googleColumn && column == googleColumn) {
    if (value == ""){
      columns.push(nogoogleColumn);
      values.push(flag);
      var googleimageURL="";
    } else {
      var googleimageURL = googlePlus(value);
      Logger.log('Returned Result: ' + googleimageURL);
    }
  }

The script did not work as I wish. It seems to stop at line:

var theURL = theURL.replace(re, replacingItem);

Additional information: Google notified me with the following message

onFormSubmit

TypeError: Cannot find function replace in object . (line 536) formSubmit

I need a way to replace part of a string with another string using Google Apps Script. I tested the following and it worked:

function test(){
  var value = 'https://plus.google./117520727894266469000';
  var googleimageURL = googlePlus(value);
  Logger.log('Returned Result: ' + googleimageURL);
}

function googlePlus(value){
    var apiKey = ScriptProperties.getProperty('apiKey');
    var re = 'http://'
    var theURL = value;
    Logger.log('Google+ is called: ' + value);
    var replacingItem = 'https://';
    var theURL = theURL.replace(re, replacingItem);
    Logger.log('Google+ Values 2: ' + value + ' : ' + theURL + ' after ' + replacingItem);
    return imageURL;
}

But, when I embedded into the following code, it did not work. Any idea?

  //If a Google+ column was not specified,put a flag.
  if (googleColumn && column == googleColumn) {
    if (value == ""){
      columns.push(nogoogleColumn);
      values.push(flag);
      var googleimageURL="";
    } else {
      var googleimageURL = googlePlus(value);
      Logger.log('Returned Result: ' + googleimageURL);
    }
  }

The script did not work as I wish. It seems to stop at line:

var theURL = theURL.replace(re, replacingItem);

Additional information: Google notified me with the following message

onFormSubmit

TypeError: Cannot find function replace in object https://plus.google./117520727894266469000. (line 536) formSubmit

Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Jan 28, 2013 at 23:29 user2019913user2019913 1511 gold badge1 silver badge6 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

I found the mistake. It is Type Error. value in the second block is not a "string", while the first block is a "string". Hence to fix the second block, I need to use:

var value = value.toString();

before passing to googlePlus(value)

发布评论

评论列表(0)

  1. 暂无评论