我仍在学习将jQuery调用转换为Angular js。
我之前已经使用ziplookup建立了一个用于zip查找的网页

为此,我必须添加:

<script src="http://ziplookup.googlecode.com/git/public/ziplookup/zipLookup.min.js" type="text/javascript">
</script>




$(document).ready(function() {                                  // When the document loads,

            $.zipLookupSettings.libDirPath = 'ziplookup/'               // (Optionally) set the library folder path manually

            $('[name=zipcode]').blur(function(){                        // Set on blur
                $.zipLookup(                                            // Do a Zip code Lookup
                    $(this).val(),                                      // Zip code Field Value
                    function(cityName, stateName, stateShortName){      // If Successful,
                        $('input[name=city]').val(cityName);            // Set City name
                        $('input[name=state_short]').val(stateName);    // Set State abbreviation
                        $('input[name=state]').val(stateShortName);     // Set State name
                        $('.message').html("Found Zipcode");            // Add a message
                    },
                    function(errMsg){                                   // If Zip couldn't be found,
                        $('.message').html("Error: " + errMsg);         // Add an error message
                    });
            });
        });


现在,我希望将其移植到angular js。
而不是在blur事件上调用zipLookup函数,而是从按钮按下时调用它。并设置相同的参数,但它给出:
ReferenceError:zipLookupSettings未定义或ReferenceError:zipLookup未定义

$scope.zipeval = function(){
     //zipLookupSettings.libDirPath = 'ziplookup/';
    zipLookup(                                            // Do a Zip code Lookup
        11722,                                      // Zip code Field Value
        function(cityName, stateName, stateShortName){      // If Successful,
            $log.log(cityName + stateName + stateShortName);
            //$('input[name=city]').val(cityName);            // Set City name
            //$('input[name=state_short]').val(stateName);    // Set State abbreviation
            //$('input[name=state]').val(stateShortName);     // Set State name
            //$('.message').html("Found Zipcode");            // Add a message
        },
        function(errMsg){                                   // If Zip couldn't be found,
            $log.log("error");       // Add an error message
        });
};


请指导。我是否需要创建指令。

最佳答案

在这里,您将其称为局部函数。

您应该将其称为$ .zipLookup。

您可以在HTML中添加一个指令。

 <input name="zipcode" custDirective></input>


在指令的链接函数中,您可以绑定到“模糊”或“单击”之类的事件。在那里您可以调用$ .zipLookup()

07-24 17:12