第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 Node.js 中運(yùn)行函數(shù)

如何在 Node.js 中運(yùn)行函數(shù)

三國紛爭 2023-03-18 16:24:22
這是我第一次在 Node.js 中創(chuàng)建類,我想知道為什么我不能運(yùn)行這個函數(shù)……有人能給我指出正確的方向嗎?class Customer {  constructor() {    this.shoppingBasket = [];    function startShopping() {      const prompt = require("prompt-sync")();      const itemName = prompt("What item is this?");      const itemPrice = prompt("How much is it?");      const taxExemption = promt("Is this a food, book or medical product?");      console.log(`Your item is ${itemName}`);    }  }}Customer = Customer;Customer.startShopping();
查看完整描述

1 回答

?
鴻蒙傳說

TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個贊

按照您在此處制作它的方式,它是一個范圍內(nèi)的功能......這意味著您無法在您嘗試訪問它的范圍內(nèi)“看到”它。


您需要使其成為“方法”或?qū)⑵涓郊拥健按恕薄?/p>


// We normally require/import things at the top, but not nessesarily.

// const PromptSync = require("prompt-sync");


class Customer {

  constructor() {

    this.shoppingBasket = [];



    this.startShoppingPropertyFunction = () => {

      // If imported at top, use this instead:

      // const prompt = new PromptSync();

      const prompt = require("prompt-sync")();

      const itemName = prompt("What item is this?");

      const itemPrice = prompt("How much is it?");

      const taxExemption = prompt("Is this a food, book or medical product?");

      console.log(`Your item is ${itemName}`);

    }

  }


  startShoppingMethod() {

    // If imported at top, use this instead:

    // const prompt = new PromptSync();

    const prompt = require("prompt-sync")();

    const itemName = prompt("What item is this?");

    const itemPrice = prompt("How much is it?");

    const taxExemption = prompt("Is this a food, book or medical product?");

    console.log(`Your item is ${itemName}`);

  }

}


const myCustomer = new Customer();

myCustomer.startShoppingMethod();

myCustomer.startShoppingPropertyFunction();


查看完整回答
反對 回復(fù) 2023-03-18
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號