在Ionic 4中拨打AJX电话时遇到问题

时间:2019-05-03 11:18:35

标签: android ajax ionic-framework angular7 ionic4

我正在制作一个应用程序,该应用程序将使用AJAX请求获取MySQL数据并将一些数据发布到数据库中。没有在我的项目中进行AJAX调用是一个问题

我正在将Ionic 4和PHP-MySQL作为后端服务

import { Component, OnInit } from '@angular/core';
import * as $ from 'jquery';
import { data } from 'jquery';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})
export class HomePage {

  public press() {
    // tslint:disable-next-line:only-arrow-functions
    $.ajax({
      url: "demo_test.txt", // or any URL
      success: function(result) {
      $("#div1").html(result);
    }});
  }
}

我想通过Ionic 4 App中的远程HTML,PHP或文本文件进行AJAX调用。

1 个答案:

答案 0 :(得分:0)

您应该从angular / http使用httpclient。那是很直的东西。

  

here

this.http.get(url).subscribe(data => {
  console.log(data)
}, err => {
  console.log(err)
}