1

モジュールに引数を渡す方法を知りたい

たとえば、モジュールを呼び出すときにカウンターの値を渡したいと思います.smtのように

testModule.resetCounter(20);

( http://www.addyosmani.com/resources/essentialjsdesignpatterns/book/#modulepatternjavascriptのコード サンプル)

var testModule = (function () {

  var counter = 0;

  return {

    incrementCounter: function () {
      return counter++;
    },

    resetCounter: function () {
      console.log( "counter value prior to reset: " + counter );
      counter = 0;
    }
  };

})();

// Usage:

// Increment our counter
testModule.incrementCounter();

// Check the counter value and reset
// Outputs: 1
testModule.resetCounter();
4

2 に答える 2

2

resetCounter関数にパラメーターを追加するだけです。

resetCounter: function(count) { ... }
于 2013-03-31T08:26:31.197 に答える
1

これを試して:

resetCounter: function (v) {
  console.log( "counter value prior to reset: " + counter );
  counter = (v && (typeof v === "number"))? v: 0;
  console.log( "counter value after reset: " + counter );
}
于 2013-03-31T08:29:45.150 に答える