假设我有
<div>
<div id="stuff">
<!-- stuff -->
</div>
</div>
我有办法将<div id="stuff">
的内容放入文件中 - 比如stuff.html
- 然后用以下内容替换上面的代码:
<div>
<stuff.html>
</div>
编辑:我更喜欢angularjs,但也对jQuery解决方案开放。我应该从外面更清楚,而不是只留下悬垂的角标签。
答案 0 :(得分:1)
使用jquery:
public static Map<Integer, List<Number>> histogram(List<Number> values, int nBuckets) {
// Get stats on the values.
DoubleSummaryStatistics stats = values.stream().mapToDouble((x) -> x.doubleValue()).summaryStatistics();
// How big must each bucket be?
int bucketSize = (int) (stats.getMax() - stats.getMin()) / nBuckets;
// Roll them all into buckets.
return values.stream().collect(Collectors.groupingBy((n) -> (int) ((n.doubleValue() - stats.getMin()) / bucketSize)));
}
然后,在您的代码中稍后:
<script src="jquery.js"></script>
<script>
$(function(){
$("#includedContent").load("stuff.html");
});
</script>
答案 1 :(得分:1)
Angular通过logging.basicConfig
提供模板加载。
在您的情况下,您可以执行以下操作:
getmyLocation()
节点双引号字符串。如果没有双引号,指令将尝试解析当前范围的值。