我刚尝试使用angular-cli创建一个新项目,然后运行服务器,但它停止了一个有趣的消息:Error: No errors
。
我这样更新了(希望有所帮助):npm uninstall -g angular-cli ; npm cache clean ; npm install -g angular-cli@latest
但是同样的问题。请在此处查看所有邮件:http://pastebin.com/AhbdHRR7
Fortunalty,我的其他项目仍然有效。
但是新的会发生什么?
JPM
node -v ==> v6.9.4
npm -v ==> 4.1.2
ng version ==> angular-cli: 1.0.0-beta.26
答案 0 :(得分:13)
根据此bug report,您需要安装额外的依赖项。
Enter 1st Number:<input type="text" id="a" onkeyup="calc()" /><br>
<br>Enter 2nd Number :
<select id="b" onchange="calc()">
<option value="1">x1</option>
<option value="2">x2</option>
<option value="3">x3</option>
<option value="4">x4</option>
</select>
<br>
<br>Result :<input type="text" id="c" value="" />
<script type="text/javascript">
function calc() {
var x = parseInt(document.getElementById("a").value);
var y = parseInt(document.getElementById("b").value);
document.getElementById("c").value = (x * y);
}
</script>
这对我有用。