本文整理匯總了TypeScript中@angular/http.BaseRequestOptions.merge方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BaseRequestOptions.merge方法的具體用法?TypeScript BaseRequestOptions.merge怎麽用?TypeScript BaseRequestOptions.merge使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@angular/http.BaseRequestOptions
的用法示例。
在下文中一共展示了BaseRequestOptions.merge方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('create connection', () => {
let base = new BaseRequestOptions(),
request: ngRequest = new ngRequest(base.merge(new RequestOptions({ url: 'http://localhost/ok' }))),
response: ResponseOptions = new ResponseOptions({ status: HTTP_STATUS_OK });
expect(() => new FetchConnection(request, new BrowserFetch(), response)).not.toThrow();
});
示例2: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
MockBackend,
BaseRequestOptions,
{
provide: Http,
useFactory: (mockBackend, options) => new Http(mockBackend, options),
deps: [MockBackend, BaseRequestOptions]
},
PackageService
]
});
const base = new BaseRequestOptions();
sampleRequest = new Request(base.merge(new RequestOptions({ url: 'https://google.com' })));
sampleResponses = sampleJsons.map(obj => {
return new Response(new ResponseOptions({ body: JSON.stringify(obj) }));
});
backend = TestBed.get(MockBackend);
backend.connections.subscribe(connection => {
connection.mockRespond(sampleResponses.shift());
});
});
示例3: BaseRequestOptions
import {BaseRequestOptions, Request, RequestMethod} from '@angular/http';
export const requestOptions = new BaseRequestOptions();
var req = new Request(requestOptions.merge({
method: RequestMethod.Post,
url: 'https://uoentrada.info/auth'
}));
console.log('req.method:', RequestMethod[req.method]); // Post
console.log('options.url:', requestOptions.url); // null
console.log('req.url:', req.url); // https://google.com