将 Web 应用程序上下文传递给 Angular2 服务 [英] Pass web application context to Angular2 Service

查看:23
本文介绍了将 Web 应用程序上下文传递给 Angular2 服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要一个名为 _contextPath 的变量,它是 JSP 中的 Javascript 评估变量,目前在 systemjs.config.js 中可用 -- 我正在尝试在 Typescript 服务中使用这个 _contextPath 变量.

I'd like to have a variable called _contextPath, which is a Javascript evaluated variable in a JSP, and which is currently available in systemjs.config.js -- I'm trying to have this _contextPath variable available in a Typescript Service.

我想知道 _contextPath 变量是否可以传递到名为 job.service.ts

I'd like to know if the _contextPath variable can be passed onto the Typescript Service called job.service.ts

这是我的文件夹结构:

├── scripts
│   └── mec-irs
│       ├── app
|       |    ├── app.component.ts
|       |    ├── app.module.ts
|       |    ├── app.routes.ts
|       |    └── jobs
|       |          ├── job.ts
|       |          ├── job.routes.ts
|       |          └── job.service.ts     
│       ├── db.json
│       ├── GruntFile.js
│       ├── index.html
│       ├── node
│       ├── node_modules
│       ├── package.json
│       ├── style.css
│       ├── systemjs.config.js
│       ├── tsconfig.json
│       ├── typings
│       └── typings.json
├── views
│   ├── mec.jsp

mec.jsp 通过 Javascript 调用获取上下文并将其存储在名为 _contextPath 的变量中:

The mec.jsp gets the context via Javascript call and stores it in a variable called _contextPath:

<html>
<head>
  <title>MEC IRS</title>
  <script>document.write('<base href="' + document.location + '" />');</script>
  <script>var _contextPath = "${pageContext.request.contextPath}";</script>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="..<%=request.getContextPath()%>/scripts/mec-irs/style.css">

  <!-- 1. Load libraries -->
  <!-- Polyfill(s) for older browsers -->
  <script src="..<%=request.getContextPath()%>/scripts/mec-irs/node_modules/core-js/client/shim.min.js"></script>
  <script src="..<%=request.getContextPath()%>/scripts/mec-irs/node_modules/zone.js/dist/zone.js"></script>
  <script src="..<%=request.getContextPath()%>/scripts/mec-irs/node_modules/reflect-metadata/Reflect.js"></script>
  <script src="..<%=request.getContextPath()%>/scripts/mec-irs/node_modules/systemjs/dist/system.src.js"></script>

  <!-- 2. Configure SystemJS -->
  <script src="..<%=request.getContextPath()%>/scripts/mec-irs/systemjs.config.js"></script>
  <script>
    System.import('app').catch(function(err){ console.error(err); });
  </script>
</head>

<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>

_contextPath 用于systemjs.config.js:

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function (global) {
  System.config({
    paths: {
      // paths serve as alias
      'npm:': _contextPath + '/scripts/mec-irs/node_modules/'
    },
    // map tells the System loader where to look for things
    map: {
      // our app is within the app folder
      app: _contextPath + '/scripts/mec-irs/app',
      // angular bundles
      '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
      '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
      '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
      '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
      '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
      '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
      '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
      '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
      // other libraries
      'rxjs':                      'npm:rxjs',
      'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
    },
    // packages tells the System loader how to load when no filename and/or no extension
    packages: {
      app: {
        main: './main.js',
        defaultExtension: 'js'
      },
      rxjs: {
        defaultExtension: 'js'
      },
      'angular-in-memory-web-api': {
        main: './index.js',
        defaultExtension: 'js'
      }
    }
  });
})(this);

Java Web 应用程序上下文在 job.service.ts 中被硬编码为 mec.我想知道如何将 _contextPath 传递给这个名为 job.service.ts 的 Typescript 服务.如下所示,上下文 mec 被硬编码为 /mec/admin/irs/jobs/,这是一个 Web 服务端点:

The Java web application context is hardcoded though in job.service.ts as mec. I'd like to know how to pass the _contextPath to this Typescript Service called job.service.ts please. As seen below the context mec is hardcoded as /mec/admin/irs/jobs/, which is a web service endpoint:

import {Injectable, Inject}    from '@angular/core';
import {Http, Headers} from '@angular/http';
import 'rxjs/add/operator/map';

// Decorator to tell Angular that this class can be injected as a service to another class
@Injectable()
export class JobService {

      // Class constructor with Jsonp injected
      constructor( @Inject (Http)private http:Http) { }

      // Base URI for Spring Batch Admin
      private jobsUrl = '/batch/';

      //TODO wish not to have hardcoded context, like below
      //private mecUrl = '/' + _contextPath + '/admin/irs/jobs/';
      private mecUrl = '/mec/admin/irs/jobs/';

      // Stop Spring Batch Job by its name
      stopJobByName(name: string) {
        const endPoint = name + '/stopIrsJobPoller';
        return this.http.get(this.mecUrl + endPoint)
            .map(res => res.json());
    }
.
.
.    

推荐答案

您需要一些可以在应用程序初始化时运行并获取服务器端设置的东西.这是我的做法.

You need something that will run at the application initialization and get your server side settings. Here is how I am doing this.

创建一个类来存储您的服务器端配置:

Create a class to store your server side configuration:

export class AppConfig {
    public ContextPath: string;
};

创建一个服务以从您的 JSP 获取您的后端配置:

Create a service to get your back-end configuration from your JSP:

import { Injectable } from '@angular/core';
import { Http } from '@angular/http';

import { AppConfig } from './app.config';

@Injectable()
export class ConfigService {
    private _config: AppConfig;

    constructor(private http: Http, private config: AppConfig) {
    }

    public Load(): Promise<AppConfig> {
        return new Promise((resolve) => {
            this.http.get('./views/mec.jspn').map(res=>res.json())
                .subscribe((config: AppConfig) => {
                    this._config = data;
                    resolve(this._config);
                }, (error: any) => {
                    this._config = new AppConfig();
                    resolve(this._config);
                });
        });
    }

    public Get(key: any): any {
      return this._config[key];
    }
}

然后通过提供您的 ConfigService 作为 APP_INITIALIZER 的提供者,在您的应用模块初始化中增强它:

Then boostrap it in your app module initialization by providing your ConfigService as the provider for the APP_INITIALIZER:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { Http, HttpModule } from '@angular/http';
import { APP_INITIALIZER } from '@angular/core';

import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { ConfigService } from './shared/services/index';
import { AppConfig } from './app.config';

@NgModule({
    declarations: [
        AppComponent,
    ],
    imports: [
        BrowserModule,
        FormsModule,
        HttpModule
    ],
    providers: [
        {
            provide: APP_INITIALIZER,
            useFactory: (configService: ConfigService) => () => configService.Load(),
            deps: [ConfigService, Http, AppConfig],
            multi: true
        },
        ConfigService,
        AppConfig
    ],
    bootstrap: [AppComponent]
})
export class AppModule {
}

然后通过在任何其他服务中注入 ConfigService 来简单地使用它:

Then simply using it by injecting the ConfigService in any other service:

import { Http, Headers, RequestOptions, Response } from '@angular/http';
import { Injectable } from '@angular/core';

import { ConfigService } from './config.service';

@Injectable()
export class AppService {
    constructor(
        private _http: Http,
        private _config: ConfigService
    ) {
      console.log(_config.Get('ContextPath'));
    }
}

这篇关于将 Web 应用程序上下文传递给 Angular2 服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆