2
私はこのようなクラスを持っているノード内のコンストラクター変数へのアクセス。 JS
Node.jsの勉強 - >
const client = require('prom-client');
class PrometheusController {
constructor() {
let counter = new client.Counter({ name: 'http_total_requests', namespace:"test", help: 'test' });
}
get (fn) {
this.counter.inc(); // Inc with 1
}
ノードjsがカウンタが未定義であることを訴えます。
こちらの記事をお勧めしますように私はthis
変数を保存しようとしたが、それはどちらかアクセスできません - javascript class variable scope in callback function
私はコンストラクタ変数にアクセスするにはどうすればよいですか?
ありがとうございました! – Illusionist