0
私はAngular to Springブートアプリケーションを使用してデータを送信する方法..?
マイapp.ts
import {bootstrap, Component} from 'angular2/angular2';
import {DemoForm} from './form';
//import {FormBuilder, ControlGroup} from "angular2/angular2";
@Component({
selector: 'my-app',
template: `
<demo-form></demo-form>
`,
directives:[DemoForm]
})
class AppComponent {
constructor(){}
}
bootstrap(AppComponent,[]);
と私のform.ts
import {Component, View, FORM_DIRECTIVES} from 'angular2/angular2';
@Component({
selector: 'demo-form'
})
@View({
directives: [FORM_DIRECTIVES],
template: `
<div>
<form #f="form" (submit)="onSubmit(f)">
<div class="form-group">
<label for="id">id</label>
<input type="text" class="form-control" ng-control="id" placeholder="id" required>
</div>
<div class="form-group">
<label for="name">name</label>
<input type="text" class="form-control" ng-control="name" placeholder="name" required>
</div>
<button type="submit" class="btn btn-default" [disabled]="!f.valid">Submit</button>
</form>
<hr>
submitted : {{submitted|json}}
</div>
`
})
export class DemoForm {
private submitted:object = {};
onSubmit(f) {
this.submitted = f.value;
}
}
と自分のユーザー名私提出...角度2にログインアプリケーションを作り、その作業していますパスワードはjson形式で
提出:
は今、私はバックエンドでそのユーザ名とパスワードを使用することができるように... spring boot controller
に私の角のアプリケーションから をユーザー名とパスワードを送信する必要があります...
を私はどのように起動するのか分かりません。チュートリアルや簡単な例があれば、これを共有することができます。共有する
私はあなたが最初のクライアント・サーバ・アーキテクチャとHTTPについて読むことをお勧め。 :) – toskv
ここに、Angularの紹介チュートリアルの関連部分へのリンクがあります:https://angular.io/docs/ts/latest/tutorial/toh-pt6.htmlまだやっていないのなら、それを行うには:) –
あなたの春の起動アプリは他のバックエンドとまったく同じです:どこからでも呼び出すことができるエンドポイントとhttp要求をサポートするもの – Sebas