EmberJS Mirage 404 ошибка при получении / аренде

Я следую инструкциям на этой странице ( https://guides.emberjs.com/v2.7.0/tutorial/installing-addons/) до следующей страницы руководства. (На самом деле я следую, пока не закончил учебник.)

Кажется, все работает нормально. ✔
Ember сервер обслуживает и отображается в браузере правильно. ✔
Ember development build также отображается корректно. ✔

Но сборка производства Ember дает мне / аренду 404 ошибку. ✖
Как исправить эту ошибку 404 на производственной сборке?

Вот мой мираж / config.js

export default function() {

  // These comments are here to help you get started. Feel free to delete them.

  /*
    Config (with defaults).

    Note: these only affect routes defined *after* them!
  */

  // this.urlPrefix = '';    // make this `http://localhost:8080`, for example, if your API is on a different server
  // this.namespace = '';    // make this `api`, for example, if your API is namespaced
  // this.timing = 400;      // delay for each request, automatically set to 0 during testing

  /*
    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.get('/rentals', function(db, request) {
    let rentals = [{
        type: 'rentals',
        id: 1,
        attributes: {
          title: 'Grand Old Mansion',
          owner: 'Veruca Salt',
          city: 'San Francisco',
          type: 'Estate',
          bedrooms: 15,
          image: 'https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg'
        }
      }, {
        type: 'rentals',
        id: 2,
        attributes: {
          title: 'Urban Living',
          owner: 'Mike Teavee',
          city: 'Seattle',
          type: 'Condo',
          bedrooms: 1,
          image: 'https://upload.wikimedia.org/wikipedia/commons/0/0e/Alfonso_13_Highrise_Tegucigalpa.jpg'
        }
      }, {
        type: 'rentals',
        id: 3,
        attributes: {
          title: 'Downtown Charm',
          owner: 'Violet Beauregarde',
          city: 'Portland',
          type: 'Apartment',
          bedrooms: 3,
          image: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Wheeldon_Apartment_Building_-_Portland_Oregon.jpg'
        }
      }];

    if(request.queryParams.city !== undefined) {
      let filteredRentals = rentals.filter(function(i) {
        return i.attributes.city.toLowerCase().indexOf(request.queryParams.city.toLowerCase()) !== -1;
      });
      return { data: filteredRentals };
    } else {
      return { data: rentals };
    }
  });

}

Префикс url и пространство имен ничего не меняют, все равно ошибка 404.

ПОЛУЧИТЬ http://localhost/rentals 404 Не найдено
"Ошибка сети: 404 не найден - http://localhost/rentals"
Ошибка при обработке маршрута: индекс Ember Data Request GET / Rentals возвратил 404

1 ответ

Решение

ember-cli-mirage отключен в производственной сборке, вы должны явно включить его в config:

if (environment === 'production') {
  ENV['ember-cli-mirage'] = {
    enabled: true
  };
}

Мираж Документация

Документы были обновлены, чтобы включить исправление для этой проблемы.

Теперь, если вы перейдете к разделу в документации под названием " Настройка тестов приложений для использования Mirage", вы увидите, что в нем написано "Открыть". /tests/acceptance/list-rentals-test.js и вставьте в этот оператор импорта вверху:

import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';

Затем в tests/acceptance/list-rentals-test.js и добавить setupMirage(hooks); сразу после setupApplicationTest(hooks)

module('Acceptance | list rentals', function(hooks) {
  setupApplicationTest(hooks);
  setupMirage(hooks);
  ...
}

Тогда данные и тесты пройдут.

Другие вопросы по тегам