javascript TypeError:找不到函数startsWith

时间:2011-06-30 20:29:47

标签: javascript ant

我有一个javascript函数:

           string.prototype.startsWith = function(str) {
               return (this.indexOf(str) === 0);
           }

当我在typeof返回object的东西上运行它时,它可以工作。当我在typeof返回string的东西上运行它时,我得到:

javax.script.ScriptException: sun.org.mozilla.javascript.internal.EcmaError: TypeError: Cannot find function startsWith. (<Unknown source>#29) in <Unknown source> at line number 29

有谁知道最近发生了什么?我甚至不明白为什么我使用的第一件事的实例类型是对象。这是readLine调用的结果,不应该是字符串吗?

<target name="analyze">
    <script language="javascript">

    <![CDATA[
            importClass(java.io.File);
            importClass(java.io.FileReader)
            importClass(java.io.BufferedReader)
            //setup the source directory
            dir = project.getProperty("PROJECT_HOME");
            fs = project.createDataType("fileset");
            fs.setDir(new File(dir));
            //only analyze java files
            fs.setIncludes("**/*.java");
            echo = project.createTask("echo");
            //iterate over files found
            srcFiles = fs.getDirectoryScanner(project).getIncludedFiles();
            for (i = 0; i < srcFiles.length; i++) {
                var filename = srcFiles[i];
                inFile  = new BufferedReader(new FileReader(new File(dir + "/" + filename)));
                while ((line = inFile.readLine()) != null) {
                   if(line.startsWith("package")) {
                       packageStr = line.substr(8);
                       while((line = inFile.readLine()) != null) {
                           if(line.startsWith("import") && line.endsWith("Foo;")) {
                               //strip out the leading import in 'import x.y.z'
                               var importStr = line.substr(7);
                               importStr = importStr.substr(0, importStr.lastIndexOf('.'));
                               if(!importStr.startsWith(packageStr)) { <---- FAILS!
                               }
                           }
                       }
                   }
                }
                inFile.close();
           }

           String.prototype.startsWith = function(str) {
               return (this.indexOf(str) === 0);
           }

           String.prototype.endsWith = function(str) {
               var lastIndex = this.lastIndexOf(str);
               return (lastIndex != -1) && (lastIndex + str.length == this.length);
           }

    ]]>
    </script>
</target>

2 个答案:

答案 0 :(得分:2)

尝试使用大写S:

String.prototype.startsWith = function(str) {
               return (this.indexOf(str) === 0);
           }

答案 1 :(得分:2)

我认为问题在于您在定义之前调用starstWith函数。也许您应该在for块之前放置两个函数定义。通过这种方式,它们在被调用之前就会被评估。