HTML未显示来自Typescript的结果

时间:2018-10-23 23:36:04

标签: javascript html typescript

我遇到了HTML无法显示Typescript的console.log输出的问题。我是编程新手,不胜感激。

下面的我的打字稿:

class Grocery {
    constructor(name:string, quantity: number, price: number ){
        console.log("buy vegetable" + name, " with quantity" + quantity, " for price" + price)
    }
    color(){
        console.log("Green")
    }

}

let basil = new Grocery("Cabbage", 3, 5)
basil = new Grocery("basil", 4, 10)

我的HTML:

<!DOCTYPE html>
<html>
    <head><title>Typescript Grocery</title></head>
    <body>
        <script src="grocery.js"></script>
    </body>
</html>

谢谢你, 日元

1 个答案:

答案 0 :(得分:0)

您的代码未输出任何内容,因为您没有调用任何方法。因此,如果您这样做:

basil.color();

然后您的代码将运行。但是您不会调用color(),因此它不会在您问题中的代码中运行。