Ionic2(Angular2タイスクリプト)プロジェクトからフォームの値を、私が連絡メールを送るPHPサーバーに送信しようとしています。Angular2 http.postフォームのPHPサーバーへの値
私は私がになってるの値...
ここである私のform.service.tsを取得することはできません。私の形で私をonSubmit関数から使用されている
import {Injectable} from 'angular2/core';
import {Http, Response} from 'angular2/http';
import {Headers, RequestOptions} from 'angular2/http';
import {Observable} from 'rxjs/Observable';
@Injectable()
export class FormService {
constructor (private _http: Http) {}
private _contactUrl = 'http://localhost:8888/Server/email.php';
// private _contactUrl = '/email';
sendMail(value: Object): Observable<any> {
const body = JSON.stringify(value);
let headers = new Headers();
headers.append('Content-Type', 'application/x-www-urlencoded');
return this._http.post(this._contactUrl, body, {
headers : headers
}).map(res => res.json());
}
}
。 TS:
import { Page, NavController } from 'ionic-angular';
import { Component } from 'angular2/core';
import { FORM_DIRECTIVES, FormBuilder, ControlGroup, Validators, AbstractControl } from 'angular2/common';
import { Http, Response, Headers } from 'angular2/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/Rx';
import { FormService} from './form.service';
@Page({
templateUrl: 'build/pages/form/form.html',
directives: [FORM_DIRECTIVES],
providers: [FormService]
})
export class Form {
contactForm: ControlGroup;
company: AbstractControl;
name: AbstractControl;
prenom: AbstractControl;
phone: AbstractControl;
email: AbstractControl;
website: AbstractControl;
message: AbstractControl;
arrivee: AbstractControl;
projet: AbstractControl;
projets = [
{ id: 1, label: 'Site Internet' },
{ id: 2, label: 'Site Intranet/Extranet' },
{ id: 3, label: 'Développement PHP' },
{ id: 4, label: 'Développement C#' },
{ id: 5, label: 'Conception Base de Données' },
{ id: 6, label: 'Tiers Maintenance Applicative' },
{ id: 7, label: "Recrutement d'un collaborateur Handicapé" }
];
arrivees = [
{ id: 1, label: 'Internet' },
{ id: 2, label: 'Recommandation' },
{ id: 3, label: 'Evênement' }
];
response: string;
value: any;
constructor(public nav: NavController, fb: FormBuilder, private _http: Http, private _formService: FormService) {
this.nav = nav;
// New controlGroup instance
this.contactForm = fb.group({
// Validators Rules for each field
// Champ XXX: ['', ...] correspondants au [ngFormControl]="XXX" de la vue HTML (inpput)
name: ['', Validators.compose([Validators.required, Validators.minLength(3), this.checkFirstCharacterValidator])],
prenom: ['', Validators.compose([Validators.minLength(3), this.checkFirstCharacterValidator])],
company: ['', Validators.compose([Validators.required, Validators.minLength(3), this.checkFirstCharacterValidator])],
projet: ['', Validators.required],
arrivee: ['', Validators.required],
phone: ['', Validators.compose([Validators.required, Validators.minLength(10)])],
email: ['', Validators.required],
website: ['', Validators.minLength(3)],
message: ['', Validators.compose([Validators.required, Validators.minLength(20)])]
});
this.name = this.contactForm.controls['name'];
this.prenom = this.contactForm.controls['prenom'];
this.company = this.contactForm.controls['company'];
this.projet = this.contactForm.controls['projet'];
this.arrivee = this.contactForm.controls['arrivee'],
this.phone = this.contactForm.controls['phone'],
this.email = this.contactForm.controls['email'],
this.website = this.contactForm.controls['website'],
this.message = this.contactForm.controls['message']
}
// Check if firt character is a number
checkFirstCharacterValidator(control: Control): { [s: string]: boolean } {
if (control.value.match(/^\d/)) {
return { checkFirstCharacterValidator: true };
}
}
onSubmit(value) {
this._formService.sendMail({value})
.subscribe(
response => this.response = response,
error => console.log(error)
);
}
}
そして、私のemail.phpファイルで、私はPOSTを取得しようとしている:
<?php
header('Content-type: application/json');
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
exit(0);
}
$value = json_decode(file_get_contents('php://input'));
// for test
echo $value->name;
?>
私はクロームのコンソールで確認
、私は何かを取得しています: Screenshot from console
私はPHPにangular2からのポストを取得できますか?何か不足していますか?
URLSearchParamsに追加するプロパティは? content-typeは 'application/application/x-www-form-urlencoded'または 'application/x-www-form-urlencoded'ですか?メルシ! – Yin
プロパティに関して、私はあなたの 'value'オブジェクトのものを想定しています...あなたは何をサーバーに送りますか:JSONのコンテンツまたはフォームですか?私はまた、私の答えを更新しました... –
私は連絡フォームを作成していますので、それはフォームです。 – Yin