gpt4 book ai didi

javascript - 如何在 angularjs 中将 javascript 字符串输出为循环数组?

转载 作者:行者123 更新时间:2023-12-03 06:56:13 25 4
gpt4 key购买 nike

如何在以下代码中循环打印到 html(angularjs) 'name' 字符串?
当我打印覆盖的范围数组时,不止一个打印了最后一个字符串。

var createMarker = function (place) {
var request = {
reference: place.reference
};
var detail = new google.maps.places.PlacesService($scope.map.control.getGMap());
detail.getDetails(request, function(result, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
$scope.map.markers.push({
latitude: place.geometry.location.lat(),
longitude: place.geometry.location.lng(),
showWindow: false,
name: result.name,
phone: result.formatted_phone_number,
website: result.website,
html: result.html_attributions[0],
type: result.types.toString()
});
$scope.$apply();


$ionicLoading.hide();

}

});

谢谢。

最佳答案

您不必在模板中编写scope,只需使用即可在重复中包含您的名称字符串

<ul> 
<li ng-repeat="m in map.markers">
{{m.name}}
</li>
</ul>

关于javascript - 如何在 angularjs 中将 javascript 字符串输出为循环数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37264353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com