小编Pra*_*ara的帖子

未捕获的ReferenceError:define未定义typescript

我是打字稿,淘汰赛和requirejs的新手.我用这个文件创建了一些demo.现在,我想使用typescript和knockoutjs实现一些次要的逻辑.

我创建了4-5个打字稿文件,这些文件是在内部导入的.当我运行html文件.我收到错误说明.标题

在此输入图像描述 有人可以帮我解决这个错误.我在这段代码中遗漏了什么.

在谷歌搜索并花了很多时间,但没有找到合适的解决方案.必须与requireJS相关才能定义所有模块.但是,由于requireJS中的新功能无法赶上.我也搜索stackoverflow类似的错误,但它并没有帮助我.

等待解决方案

javascript requirejs knockout.js typescript

20
推荐指数
1
解决办法
4万
查看次数

具有多个组件的角度模块在加载时变慢

友.

我找到了一个延迟在Angular 2中启动我的模块的场景.我不是Angular的经验人员.这是我的第一个项目.所以,不知道如何处理这种情况.请任何能解释我的人.

场景: -
我创建了一个小应用程序,其中有各种模块.每个模块都有2-3个子组件.但我的SignUp模块和MyAccount模块是各种组件的混合体.

下面是我的应用程序的层次结构.

app
--Front-end
---- videos
------ Detail
-------- videodetail.component.html
-------- videodetail.component.ts
------列表
-------- list.component.html
-------- list.component.ts
------ videos.component.html
------ videos.component.ts
- ----- videos.routing.ts
------ videos.module.ts
---- article
------ article.component.html
------ article.component.ts
- --front-end.routing.ts
---- front-end.module.ts
---- front-end.component.ts
---- front-end.component.html
--signup
---- stepone
------ stepone.component.html
------ stepone.component.ts
---- steptwo
------ steptwo.component.html
------ steptwo.component.ts
- --- stepthree
------ stepthree.component.html
------ stepthree.component.ts
---- stepfour
------ stepfour.component.html
------ stepfour. component.ts
---- final
------ final.component.html
------ final.component.ts
---- OneMore …

typescript angular2-template angular

13
推荐指数
1
解决办法
7761
查看次数

如何在Typescript中实现aws.sdk.ts文件?

我已经尝试在我的mainmodule.ts文件中使用aws-sdk.ts文件了.但得到未定义的错误.

/// <reference path="aws.sdk.ts" />
import * as AWS from 'aws.sdk';
var typeScriptViewModel = function (first, last) {
    var self = this;
    AWS.Config({
        accessKeyId: 'ABC',
        secretAccessKey: 'ABCSECRET'
    });

    AWS.config.region = 'us-east-1'; 

   // many more usage of AWS. but got stuck on the first implementation itself.
   //var bucket = new AWS.S3({
   //         params: {
   //             Bucket: bucketName, Prefix: path, Delimiter: '/'
   //         }
   //     });
}
Run Code Online (Sandbox Code Playgroud)

它抛出一个错误,说"Uncaught TypeError:无法读取未定义的属性'配置'".

任何人都可以指导我如何使用aws.sdk.ts使用s3桶?我是Typescript的新手.

javascript amazon-s3 amazon-web-services typescript

5
推荐指数
1
解决办法
1729
查看次数

使用 cypress 命令验证下载文件(PDF/Word/Excel)的数据

我有一种场景,我必须使用 Cypress 命令验证下载文件的数据。文件类型:- pdf、word、excel。我有被调用的服务器 API 操作的 URL,作为响应,它返回 pdf 文件。我需要使用 Cypress 命令和 Typescript(插件和类型)来实现。

我能够获得下载的状态,甚至 response.body 也有一些文本,但它需要一些解析器来解析响应正文。下面是我尝试过的代码。

const oReq = new XMLHttpRequest();
    oReq.open("GET", href as string, true);
    oReq.responseType = "arraybuffer";
    oReq.onload = () => {
        if (oReq.readyState === oReq.DONE) {
            if (oReq.status === 200) {
                // tried parsing the response. 
// looking for any parser which can parse the given reponse body into Text or json
            }
        }
    }


cy.request(href).then((response) => {
    expect(response.status).to.equal(200);
    expect(response.body).not.to.null;
    const headerValue = response.headers["content-disposition"];

    // expect(headerValue).to.equal("attachment; filename=ExperimentEntityList.<FileExtension-PDF | …
Run Code Online (Sandbox Code Playgroud)

automated-tests typescript typescript-typings cypress

3
推荐指数
2
解决办法
1万
查看次数

赛普拉斯长自动化脚本使用Aw Snap Error崩溃Chrome浏览器

我在柏树有一个浏览器崩溃问题.我的自动化脚本有点漫长的过程,因此在运行几个场景之后.每当它尝试运行第三个场景时,浏览器崩溃并显示以下屏幕.

在此输入图像描述

有时它会超时并抛出440个未知代码错误.

在此输入图像描述

如果我移动我的第一个场景,那么也是同样的行为.每次第1和第2次执行都很完美,但从第3次开始,所有测试都失败

有没有人面对类似的问题?

automation typescript cypress

1
推荐指数
1
解决办法
1049
查看次数