在我的nodejs应用程序中,我使用svg-captcha,我必须重新加载验证码以生成新的而不刷新页面。是否有任何想法使用角度或任何选项在这个npm
答案 0 :(得分:1)
**In HTML -**
<a tabindex="-1" style="border-style: none;" href="javascript:void(0);" title="Refresh Image" ng-click="refreshCaptcha()">
<img src="image/refresh.png" alt="Reload Image" height="25" width="25" onclick="this.blur()" align="bottom" border="0" /></a>
**In Controller -**
$scope.refreshCaptcha = function(){
$http.get('SVG_Captcha_API').then(function(response) {
console.log(response.data);
$scope.captcha = response.data.data;
$scope.captcha_text = response.data.text;
});
}