ng-include 不适用于包含 javascript 的 html
Posted
技术标签:
【中文标题】ng-include 不适用于包含 javascript 的 html【英文标题】:ng-include not working for html with javascript in it 【发布时间】:2016-02-12 10:51:02 【问题描述】:这是我的 HTML 代码以及 javascript
<!DOCTYPE html>
<html>
<head lang="en">
<style>
#map-canvas
height:400px;
width:600px;
.controls
margin-top: 16px;
border: 1px solid transparent;
border-radius: 2px 0 0 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
height: 32px;
outline: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
#pac-input
background-color: #fff;
padding: 0 11px 0 13px;
width: 400px;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
text-overflow: ellipsis;
#pac-input:focus
border-color: #4d90fe;
margin-left: -1px;
padding-left: 14px;
/* Regular padding-left + 1. */
width: 401px;
.pac-container
font-family: Roboto;
#type-selector
color: #fff;
background-color: #4d90fe;
padding: 5px 11px 0px 11px;
#type-selector label
font-family: Roboto;
font-size: 13px;
font-weight: 300;
</style>
<script src="http://maps.googleapis.com/maps/api/js?libraries=places"></script>
<script type="text/javascript">
var map;
function initialize()
var markers = [];
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapTypeId: google.maps.MapTypeId.ROADMAP
);
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(-33.8902, 151.1759),
new google.maps.LatLng(-33.8474, 151.2631));
map.fitBounds(defaultBounds);
// Create the search box and link it to the UI element.
var input = /** @type HTMLInputElement */
(
document.getElementById('pac-input'));
map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
var searchBox = new google.maps.places.SearchBox(
/** @type HTMLInputElement */ (input));
// Listen for the event fired when the user selects an item from the
// pick list. Retrieve the matching places for that item.
google.maps.event.addListener(searchBox, 'places_changed', function ()
var places = searchBox.getPlaces();
for (var i = 0, marker; marker = markers[i]; i++)
marker.setMap(null);
markers = [];
var bounds = new google.maps.LatLngBounds();
for (var i = 0, place; place = places[i]; i++)
// Create a marker for each place.
var marker = new google.maps.Marker(
map: map,
title: place.name,
position: place.geometry.location
);
markers.push(marker);
bounds.extend(place.geometry.location);
map.fitBounds(bounds);
);
google.maps.event.addListener(map, 'click', function(event)
var myLatLng = event.latLng;
var lat = myLatLng.lat();
var lng = myLatLng.lng();
var x = 'Latitude is =' + lat + 'Longitude is=' + lng;
var TheTextBox = document.getElementById("lat");
TheTextBox.value = lat;
var TheTextBox1 = document.getElementById("long");
TheTextBox1.value = lng;
// alert(x);
);
google.maps.event.addDomListener(window, "load", initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
<input id="pac-input" class="controls" type="text" placeholder="Search Box">
<input type="text" name="lat" id="lat">
<input type="text" name="long" id="long">
</body>
</html>
我有一个 Angular 应用程序,它调用点击事件的各种视图,它由 $locationprovider
和 $routeprovider
从一个用于控制器和所有的单个 js 文件处理。
现在的问题是,当我尝试在其中一个视图中使用 ng-include
功能时,它无法正常工作。文本框可见,但地图不可见。我什至尝试使用 onload 东西再次初始化我原始 HTML 页面中的函数,但它仍然不起作用。
控制台上的错误是-ReferenceError: google is not defined
当 javascript 部分无法使用谷歌地图脚本时会发生这种情况。
检查此错误信息:Reference Error - *** Question
ng-include 代码
<ng-include
src="'testmap.html'"
[onload="initialize();"]
>
</ng-include>
请让我知道我必须做些什么来纠正这个问题。
感谢您的宝贵时间。如果您需要我方面的更多说明,请告诉我。
【问题讨论】:
【参考方案1】:ng-include 不是 iframe 替代品。它的目的是在其他模板中添加模板用于 Angular,其中可能包括对实际 Angular 代码的调用。 您正在尝试将整个 html 页面、head 标记和所有内容包含到另一个页面中,这不仅是无效的 html,而且除非您在 iframe 元素中执行,否则毫无意义。
我建议您将代码重构为 google maps angular 指令。
【讨论】:
感谢您的回复@SirDemon。我确实在官方网站上阅读了有关 ng-include 的文档,并且我知道这一事实,即为什么我发布了相同的问题。我很确定很多人会喜欢在某个时间点做类似的事情。我正在研究仅从 *** 上的来源收集的建议,我将使用结果更新此线程。干杯!以上是关于ng-include 不适用于包含 javascript 的 html的主要内容,如果未能解决你的问题,请参考以下文章
AngularJS ng-include 不包含视图,除非传入 $scope
AngularJS:ng-include 和 ng-controller