0

/node_modules/typo-js/dictionaries/en_US/en_US.dic内部にリクエストを送信するように見えるSimpleMDEを使用しています。

ここに画像の説明を入力

ここに画像の説明を入力

Mirage を使用してこの GET リクエストを渡す方法は?

次の設定を使用していますが、効果はありません。

  this.passthrough('node_modules/**');
  this.passthrough('node_modules/typo-js/dictionaries/en_US/en_US.dic');

  this.passthrough('/node_modules/**');
  this.passthrough('/node_modules/typo-js/dictionaries/en_US/en_US.dic');

mirage 設定ファイル内のコード、

export default function() {
  this.urlPrefix = 'http://localhost:3000';
  this.namespace = '';
  this.timing = 400;

  /*
    Shorthand cheatsheet:

    this.get('/posts');
    this.post('/posts');
    this.get('/posts/:id');
    this.put('/posts/:id'); // or this.patch
    this.del('/posts/:id');

    http://www.ember-cli-mirage.com/docs/v0.2.x/shorthands/
  */

  this.passthrough('https://cdn.jsdelivr.net/**');
  this.passthrough('/node_modules/typo-js/dictionaries/en_US/en_US.dic');
  this.passthrough('/node_modules/typo-js/dictionaries/en_US/en_US.dic')
  this.passthrough();
}
4

0 に答える 0