我正在尝试调用javascript方法。我在运行时通过字符串连接构建html。

$scope.getRoute = function (isRouteFormValid) {
    routingDemoPageService.executeService(serviceURL, 'admin', 'admin').then(function (response) {
        function tryingOnceAgain() {
            alert('called.....');
        }

        var markers = L.markerClusterGroup({
            showCoverageOnHover:false,
            chunkedLoading: true
        });

        var geojsonLayer = L.geoJson(response, {
            onEachFeature: function(feature, layer){

            var UIDValue = (feature.properties['uid'] !== null ? Autolinker.link(String(feature.properties['uid'])) : '');

            var popupContent = '<table>' +
                            '<tr><th scope="row"><a href="javascript:tryingOnceAgain()">Edit</a></th><td></td></tr>' +

                            '<tr><th scope="row">uid</th><td>' + UIDValue + '</td></tr></table>';

             layer.bindPopup(popupContent);
         }
     });
     markers.addLayer(geojsonLayer);
     $scope.map.addLayer(markers);
     $scope.map.fitBounds(markers.getBounds());

   })['catch'](function (error) {

 });


}

当我单击链接,该链接调用tryingOnceAgain方法时,出现以下错误


  ReferenceError:未定义tryingOnceAgain


我不确定为什么会出现以下错误。

有人可以提供任何指示我在做什么错。

最佳答案

javascript:tryingOnceAgain()引用了全局范围内的函数,但是您在tryingOnceAgain范围内定义了function (response) {函数。

要解决此问题,您必须将tryingOnceAgain函数移至全局范围。

或仅将其分配给window对象而不更改物理位置:

window.tryingOnceAgain = function() {...}

09-25 17:56