baseUrl的格式正确的是哪一个()
A、~/rest/test/
B、/~/rest/test/
C、~/rest
D、~/rest/test
第1题:
第2题:
28、下列代码的输出结果是()。 function sum(x: number, ...rest: number[]): number { let result = x; for (let i = 0; i < rest.length; i++) { result += rest[i]; } return result; } console.log(sum(1, 2, 3, 4, 5));
A.运行错误
B.运行正确,结果为5
C.运行正确,结果为10
D.运行正确,结果为15
第3题:
关于REST接口相比SOAP接口,下面说法错误的是?
A.REST接口比SOAP接口更加简洁高效
B.REST接口比SOAP接口更容易使用
C.REST接口比SOAP接口更能利用Web的优势
D.REST接口比SOAP接口更难维护
第4题:
第5题:
8、下列代码的输出结果是()。 function sum(x: number, ...rest: number[]): number { let result = x; for (let i = 0; i < rest.length; i++) { result += rest[i]; } return result; } console.log(sum(1, 2, 3, 4, 5));
A.运行错误
B.运行正确,结果为5
C.运行正确,结果为10
D.运行正确,结果为15