Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/59.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Mysql Can';t通过角度测量从节点获取数据_Mysql_Node.js_Angular - Fatal编程技术网

Mysql Can';t通过角度测量从节点获取数据

Mysql Can';t通过角度测量从节点获取数据,mysql,node.js,angular,Mysql,Node.js,Angular,嗨,我无法在6点之前从节点获取数据。 我添加了一个服务来连接它们,但它不起作用 我成功地通过nodejs服务器获取了数据,但在角度组件上无法接收数据 我知道我错过了他们之间的联系,但我无法解决它 HostingstartComponent.ts import { Component, OnInit } from '@angular/core'; import { NgAnalyzedFile } from '@angular/compiler'; import {RouterModule ,Ro

嗨,我无法在6点之前从节点获取数据。 我添加了一个服务来连接它们,但它不起作用

我成功地通过nodejs服务器获取了数据,但在角度组件上无法接收数据

我知道我错过了他们之间的联系,但我无法解决它

HostingstartComponent.ts

import { Component, OnInit } from '@angular/core';
import { NgAnalyzedFile } from '@angular/compiler';
import {RouterModule ,Routes } from '@angular/router'; 
import {HttpModule, Http} from '@angular/http'
import { AngularFontAwesomeModule } from 'angular-font-awesome';
import { SecComponent } from '../sec/sec.component';
import { ThirdComponent } from '../third/third.component';
import {aService} from '../services/a.service';
@Component({
  selector: 'app-hostingstart',
  templateUrl: './hostingstart.component.html',
  styleUrls: ['./hostingstart.component.css']
})
export class HostingstartComponent implements OnInit {
  aService: any;
  data: any;
   appRoutes : Routes=[
    {path: 'hostingstar',component : HostingstartComponent},
    {path: '',component : HostingstartComponent},
    {path: 'sec',component : SecComponent, data : {some_data : 'some value'}},
    {path: 'third',component : ThirdComponent, data : {some_data : 'some value'}}
  ]; 

  headImg : any="assets/images/pan.JPG";
  constructor(private http: Http , private service: aService) { 
    this.headImg ="assets/images/pan.JPG";
  //  this.aService.getData().then( (result) => {this.data = result; });
  }

  ngOnInit() {
   // alert(this.aService.getData());
   // this.aService.getData().then( (result) => {this.data = result; });
   // alert(this.data);
   }

   myFunc() {
    //this.router.navigate(['/third', 'north']);
   // alert( document.getElementById("search-input").value);

    }
    getData() {

      this.aService.getData().subscribe((dataFromServer) => {

        this.data=dataFromServer;
        // Now you can use the data
       // alert(dataFromServer)
        console.log(dataFromServer);
      });
    }
}
aService.ts

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

@Injectable()
export class aService {

  constructor(private http: Http) {
  }

 async getData() {
    const options = {
      headers: new Headers({
        'Content-Type':  'application/json;charset=utf-8',
        'Access-Control-Allow-Origin': '*'
      })
    };

    // const url = './assets/heroes.data.json';
    const url = 'http://localhost:3000/';
    return this.http.get(url, options)
      .toPromise()
      .then(response => {
        if (response != null) {
          const result = response.json();
          return Promise.resolve(result);
        }
        return [];
      })
      .catch(err => {
        console.warn('error in getCats', err);
        return Promise.reject(null);
      });
  }    
}
节点js:index.js

 console.log('Running File: index.js')
    //-- Create Express Server:

    var express = require('express');
    var app = express();
    var util = require('util');


    var mysql = require('mysql');
    var a;
    var con = mysql.createConnection({
        host : 'localhost',
        user: 'node',
        password : 'arafat1990!@#$',
        database: "iTour"
    });
    con.connect(function(err) {
        if (err) throw err;
        con.query("SELECT * FROM feedback", function (err, result, fields) {
          if (err) throw err;
        //  console.log(result);
          a=result;
        });
      });
    //-- Map Base URL to res (Response)
    app.get('/', function(req, res){
            var fname = req.query.fname;
            var lname = req.query.lname;

            var html = util.format('<p>Hello %s %s</p>', a[1].username,a[0].rating);
            res.send(a);
        });
        app.get('/hostingstar', function(req, res){
          var fname = req.query.fname;
          var lname = req.query.lname;

          var html = util.format('<p>Hello %s %s</p>', a[1].username,a[0].rating);
          res.send(a);
      });

    //-- Listen on Port 3000:
    app.listen(3000);

在getService方法中,您调用的是服务本身,而不是构造函数中的属性

你的:

应该是:

this.service.getData()
在ngOnInit中另外调用myFunc()

ngOnInit() {
  this.myFunc()
}
this.service.getData()
ngOnInit() {
  this.myFunc()
}