我在VisualStudio 2013中创建了一个新项目,当我在Windows模拟器和设备上运行时它工作正常,但是当我在Ripple和Android手机上运行它时它不会运行并且给我1个错误和1个警告。 / p>
警告1 TypeScript编译器没有给出编译文件, 所以它会跳过编译。错误2 EPERM,打开 ' C:\用户\ rao.burugula.cordova \ lib中\ npm_cache \科尔多瓦-机器人\ 3.6.4 \ package.tgz'
当我查找package.tgz时,它是一个zip文件,所以我解压缩并放在那里。但仍然是同一个问题。
在VS2013中创建的其他PhoneGap项目工作正常,只有我创建的新项目才会出现此错误。
您能否建议如何解决此问题。
在我创建新的空白应用程序(Apache Cordova)时自动生成的代码。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TestRestWebservices</title>
<!-- TestRestWebservices references -->
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<p>Hello, your application is ready!</p>
<!-- Cordova reference, this is added to your app when it's built. -->
<script src="cordova.js"></script>
<script src="scripts/platformOverrides.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>
更新 我也试过用这个 The TypeScript Compiler was given no files for compilation, so it will skip compiling
但无法找到&#39;构建动作&#39;对于任何打字稿文件。我看了一下属性,但没有。找到它的路径?? 提前致谢
饶