问题描述
我正在使用APi访问此api是通过需要发送到api的哈希键完成的,但我们实际上并不知道如何实现.
I am using APi The access to this api is done with hash key that we need to send to the api but we don't really know how to implement.
我发现 https://www.npmjs.com/package/crypto-js但我不知道如何整合角度2
I found https://www.npmjs.com/package/crypto-js but i dont know how to integrate angular 2
我还发现了 https://www.npmjs.com/package/angular-md5但我不知道如何使用angular 2打字稿
also i found https://www.npmjs.com/package/angular-md5 but i dont know how to import using angular 2 typscript
推荐答案
角度2使用
npm install ts-md5 --save
然后将其导入组件,服务或您想要的任何位置
then import it into component, service or wherever you want
import {Md5} from 'ts-md5/dist/md5';
使用 systemJS 时,需要设置映射和程序包路径.
When you are using systemJS is neccessary set map and package paths.
map: {
'ts-md5': 'src/js/ts-md5',
},
packages: {
'ts-md5': {main: '/md5.js'},
}
这是我的项目之一中的示例,在该示例中,我将必要的库复制到单独的文件结构中.
This is the example from one of my project where I copy neccessary libraries to separate file structure.
这篇关于如何在Angular 2打字稿中生成md5哈希?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!