在我们的产品中,我们有一个Api,可以提供巨大的响应。当我们从CLI调用它时,这很可能没有问题,但是通过XmlHttpRequest从浏览器调用它会杀死浏览器。
我的问题
有没有办法检查特定的字符串出现?我不知道,如何检查,但是Api路线。
我们说路线是/api/hugeResponse
。如果我的一个队友正在写这样的东西:
1. class ApiService {
2.
3. constructor($http) {
4. this.$http = $http;
5. }
6.
7. hugeReponseApi() {
8. const request = {
9. method: "GET",
10. url: "api/hugeResponse"
11. };
12.
13. return this.$http(request);
14. }
15.
16. }
我希望linter在第10行抛出错误。