typescript调用javascript && URI.js
URI.js
URI.js是一个用于处理URL的JavaScript库
它提供了一个“jQuery风格”的API(Fluent接口,方法链接)来读写所有常规组件和许多便利方法,如.directory()和.authority()
本文以URI.js库为例进行讲解
链接:
http://medialize.github.io/URI.js/
https://github.com/medialize/URI.js
ts使用js
安装URI.js
npm install urijs
配置tsconfig.json
{
"compilerOptions": {
// 允许调用js
"allowJs": true
}
}
使用js
import * as URL from 'urijs'
// get请求
getRequest(url: string, params: any): Promise<any> {
//...
//把any转为key=value&key=value...
url=url+'?'+URL.buildQuery(params);
//...
}
学习技术最好的文档就是【官方文档】,没有之一。
还有学习资料【Microsoft Learn】、【CSharp Learn】、【My Note】。
如果,你认为阅读这篇博客让你有些收获,不妨点击一下右下角的【推荐】按钮。
如果,你希望更容易地发现我的新博客,不妨点击一下【关注】。