我正在使用 bower (v. 1.3.5) 来引入我的前端 JS 依赖项,我想依赖这个:https ://github.com/dcneiner/Downloadify
它没有自己的 bower.json,所以我在 MY bower.json 中通过 URL 引用:
"dependencies": {
"jspdf": "~1.0.272",
"downloadify": "https://github.com/dcneiner/Downloadify.git"
}
但我得到的只是命名文件夹,其中只包含一个.bower.json
文件,但没有代码或 GH 存储库中的任何其他内容。
直接在 cmd 行上运行 bower install 给出(一旦我清除了 bower 缓存):
E:/My/Path>bower install https://github.com/dcneiner/Downloadify.git
bower Downloadify#* not-cached https://github.com/dcneiner/Downloadify.git#*
bower Downloadify#* resolve https://github.com/dcneiner/Downloadify.git#*
bower Downloadify#* checkout 0.2.1
bower Downloadify#* resolved https://github.com/dcneiner/Downloadify.git#0.2.1
bower Downloadify#~0.2.1 install Downloadify#0.2.1
我以前用 jQuery.fileDownload 做过同样的事情,效果很好,所以我不认为这是我对我的机器做过的任何事情?
问题:
- 我做错了什么吗?
- Downloadify 是否设置错误?
- 还是莫名其妙的谜团?
在前两种情况下,有什么问题,我该如何解决?
注意:目前我正在通过手动下载源代码并将其硬编码到我的项目中来解决它。