使用aurelia-fetch-client

时间:2016-10-19 18:49:07

标签: javascript aurelia aurelia-framework aurelia-fetch-client

我使用的是aurelia-fetch-client版本1.0.1。

我在我创建的服务类中执行fetch,并收到一条错误说明:

  

TypeError:无法读取属性' isProtoTypeOf'在eval中未定义   [文件路径]奥里利亚取入客户端。

第134行的aurelia-fetch-client文件中抛出了实际错误。代码是:

此代码来自aurelia-fetch-client:

var promise = processRequest(request, this.interceptors).then(function (result) {
    var response = null;

    if (Response.prototype.isPrototypeOf(result)) {  <<--PROBLEM IS HERE!!!! LINE 134
      response = result;
    } else if (Request.prototype.isPrototypeOf(result)) {
      request = Promise.resolve(result);
      response = fetch(result);
    } else {
      throw new Error('An invalid result was returned by the interceptor chain. Expected a Request or Response instance, but got [' + result + ']');
    }

    return request.then(function (_request) {
      return processResponse(response, _this.interceptors, _request);
    });
  });

见上文。我已经注释了抛出错误的代码行。 &#34;原型&#34;为null,因此返回给定的错误消息。

我在之前的项目中使用了所有这些,但是使用了aurelia-fetch-client的beta版本。下面的代码与调用aurelia-fetch-client的beta版本的代码非常相似。

documentation表示我需要为此加载一个polyfill,所以我加载了&#34; fetch&#34;指定polyfill(我在main.js中执行此操作),但仍然会收到此错误。如果我在服务中加载它,就会发生同样的事情。

有没有人经历过这一切,你是如何解决的?

以下是服务调用和基本服务的一些代码:

import {inject} from 'aurelia-framework';
import {Configure} from 'aurelia-configuration';
import {HttpClient} from 'aurelia-fetch-client';

export class ServiceBase {

    // *************************************************************
    // Services Constructor
    // Sets up the base http Client configuration
    // *************************************************************
    constructor(configure, httpClient) {

        // Set up configuration and initial user token
        this.userToken = 'tokenvalue';  //TODO: put real one in later,  not used on this call
        this.configure = configure;
        this.httpClient = httpClient;

        this.httpClient.configure(config => {
            config
              .withBaseUrl(this.configure.get('servicesBaseUrl'))
              .withDefaults({
                  headers: {
                      'content-Type': 'application/x-www-form-urlencoded',
                      'Accept': 'application/x-www-form-urlencoded',
                      'X-Requested-With': 'Fetch'
                  },
                  mode: 'cors'
              })
              .withInterceptor({
                  request(request) {
                      console.log('KCU Class Requesting: ' + request.method + '; ' + request.url);
                      return request;
                  },
                  response(response) {
                      console.log('KCU Class Received: ' + response.status + '; ' + response.url);

                      if (response.status !== 200) {
                          throw response;
                      } else {
                          return response;
                      }

                  },
                  requestError(err) {
                      console.log('Request Error Receieved: ' + err.toString());
                  }
              });
        });

    }

}

以及扩展此基类的服务:

import {inject} from 'aurelia-framework';
import {HttpClient, json} from 'aurelia-fetch-client';
import {Configure} from 'aurelia-configuration';
import {ServiceBase} from './serviceBase'

@inject(Configure, HttpClient)

export class HospitalService extends ServiceBase {

    constructor(configure, httpClient) {
        super(configure, httpClient);

        this.configure = configure;

    }

    // ****************************************
    // Extracts the list of hospitals for the initial search grid
    // ****************************************
    getHospitalListSearchGridData() {

        let urlCompletion = '';

        return this.httpClient.fetch(
            this.configure.get('HospitalSearch') + urlCompletion,    // This is the method name on the service to call
            {
                method: 'get',
                headers: {
                    'Authorization': 'Bearer ' + this.userToken.toString()
                }
            }            
            )
            .then(response => response.json())
            .then(responseInfo => {
                return responseInfo;
            })
            .catch(error => {
                return false;
            });

    }

}

关于整个项目的更多信息是,它是在现有的ASP.NET MVC项目中构建的。正在创建一个新区域,其中新的屏幕组将存在,这也可以很好地封装文件和依赖项,但是利用提供数据接口的现有服务层。

1 个答案:

答案 0 :(得分:0)

对于那些可能遇到此问题(或类似问题)的人,我找到了问题的根源。

这与polyfill没有任何关系。 JS代码适用于最新版本的Chrome(v 54.xxx)。而且因为它不是一个较旧的浏览器,所以polyfill没有错。问题是javascript文件冲突是什么。

&#34;响应&#34;对象被某种方式覆盖,我必须确定在哪里。由于它生活在一个更大的ASP.NET MVC应用程序中,我将应用程序树查找到主应用程序的脚本文件,并发现确实使用了response.js文件。它很久以前就已经实现,以帮助访问我们的应用程序套件的服务层。

当删除它时,aurelia-fetch-client就像宣传的那样工作。现在的问题是访问服务的一些现有代码无法正常工作。解决方案超出了本书的范围。最重要的是,JS冲突造成了问题。