This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://jasonwatmore.com/post/2017/12/15/angular-5-mock-backend-example-for-backendless-development | |
import { Injectable } from '@angular/core'; | |
import { HttpRequest, HTTP_INTERCEPTORS } from '@angular/common/http'; | |
import { LoggerService } from 'src/libs/logger/src/logger.module'; | |
import { FakeBackendInterceptorBase } from 'src/app/fake-backends/fake-backend-base'; | |
import { getApiPathFromId } from 'src/app/utils/utils'; | |
@Injectable() | |
export class FakeBackendInterceptor extends FakeBackendInterceptorBase { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://type.jp/et/log/article/english-tips16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form data-parsley-validate> | |
<input type="text" required placeholder="テキストを入力してください" data-parsley-trigger="keyup focusout change input"> | |
<input type="email" required placeholder="メールアドレスを入力してください" data-parsley-trigger="keyup focusout change input"> | |
<button type="submit">submit</button> | |
</form> |