我正在尝试将ngStorage添加到已具有功能的模块中。我真的很有角度,所以请原谅我错误使用的条款。我以为我已经将ngStorage添加到模块中,但是当我添加它时代码会中断。
原始代码:
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="map_canvas" style="float: right; border: 2px solid #3872ac;"></div>
<div id="panctrl" style="float: right;"></div>
添加了ngStogare:
Scanner in = new Scanner(System.in);
System.out.println("Please enter number of rows: ");
int rows = in.nextInt();
for (int i = 0; i < rows; ++i) {
System.out.printf("%" + (rows - i) + "s", "*");
for (int j = 0; j < i; ++j)
System.out.print("o*");
System.out.println();
}
我做错了什么?感谢
答案 0 :(得分:1)
'use strict';
angular.module('mobsocial.climbs', ['ngStorage','ionic'])
您在代码中使用了额外的逗号。还要确保在索引
中包含了ng-storage库文件