


Use Angular to obtain local Localstorage data in real time to achieve the effect of simulating background data login
Dec 07, 2016 pm 01:39 PMAfter studying for a whole morning, I finally made it, get the local localStorage in real time to simulate registration and login~~~
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>我們雖然很窮,但是我們有夢想</title> <script src="angular.js"></script> </head> <body ng-app="zcsApp" ng-controller="zcsControl"> 用 戶 名:<input type="text" ng-model="name" /><br> 密 碼:<input type="text" ng-model="pwd" /><br> 確認(rèn)密碼:<input type="text" ng-model="pwd2" /><br> <input type="button" value="注冊" ng-click=" ZhuCe()"/> <input type="button" value="登入" ng-click=" Enter()"/> <span style="color: red">{{message}}</span> </body> <script> // var data={"name":"admin","pwd":"12"}; function PersonalInfo(name,pwd){ this.name=name; this.pwd=pwd; } PersonalInfo.prototype.savaLocalStorage= function () { var storage=window.localStorage.getItem("PersonalInfo");//得到的數(shù)據(jù)是字符串 storage=JSON.parse(storage) ||[];//字符串轉(zhuǎn)換成對象 storage.push(this); window.localStorage.setItem("PersonalInfo",JSON.stringify(storage)); }; PersonalInfo.selectByName= function (name,pwd) { var storage=window.localStorage.getItem("PersonalInfo"); storage= storage?JSON.parse(storage):[]; return storage.some(function (v) {//返回一個(gè)布爾值 return v.name===name&& v.pwd; }) }; PersonalInfo.prototype.hasName= function (name,pwd,fn,fn2) { var storage=window.localStorage.getItem("PersonalInfo");//得到的數(shù)據(jù)是字符串 storage= storage?JSON.parse(storage):[]; var data=storage; for(var i=0;i<data.length;i++){ var v=data[i]; if(name!==v.name&& pwd!==v.pwd) { fn(); return; } }; }; angular.module("zcsApp",[]) .controller("zcsControl",["$scope", function ($scope) { $scope.ZhuCe= function () { $scope.message=""; var name=$scope.name; var pwd=$scope.pwd; var pwd2=$scope.pwd2; // 若是輸入為空或者undefined時(shí) if(name===undefined||name.trim().length===0||pwd===undefined||pwd.trim().length===0||pwd2===undefined||pwd2.trim().length===0){ $scope.message="請輸入完整信息"; return; } // 若輸入的密碼和確認(rèn)密碼不一致時(shí) if(pwd!==pwd2){ $scope.message="倆次輸入的密碼不一致"; return; } // 判斷本地是不是已經(jīng)有這個(gè)名字 if(PersonalInfo.selectByName(name,pwd)){ $scope.message="此賬號已注冊"; return; } // 存儲信息 var data=new PersonalInfo(name,pwd); data.savaLocalStorage(); }; $scope.Enter= function () { $scope.message=""; var name=$scope.name; var pwd=$scope.pwd; var per=new PersonalInfo(name,pwd); if(PersonalInfo.selectByName(name)){ $scope.message="登入成功"; return; } per.hasName(name,pwd,function () { $scope.message="賬號錯誤或者密碼不正確" });//得到登入的信息 } }]) </script> </html>

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

How to use monaco-editor in angular? The following article records the use of monaco-editor in angular that was used in a recent business. I hope it will be helpful to everyone!

This article continues the learning of Angular, takes you to understand the metadata and decorators in Angular, and briefly understands their usage. I hope it will be helpful to everyone!

With the rapid development of the Internet, front-end development technology is also constantly improving and iterating. PHP and Angular are two technologies widely used in front-end development. PHP is a server-side scripting language that can handle tasks such as processing forms, generating dynamic pages, and managing access permissions. Angular is a JavaScript framework that can be used to develop single-page applications and build componentized web applications. This article will introduce how to use PHP and Angular for front-end development, and how to combine them

This article will give you an in-depth understanding of Angular's state manager NgRx and introduce how to use NgRx. I hope it will be helpful to you!

Do you know Angular Universal? It can help the website provide better SEO support!

This article will share with you an Angular practical experience and learn how to quickly develop a backend system using angualr combined with ng-zorro. I hope it will be helpful to everyone!

Authentication is one of the most important parts of any web application. This tutorial discusses token-based authentication systems and how they differ from traditional login systems. By the end of this tutorial, you will see a fully working demo written in Angular and Node.js. Traditional Authentication Systems Before moving on to token-based authentication systems, let’s take a look at traditional authentication systems. The user provides their username and password in the login form and clicks Login. After making the request, authenticate the user on the backend by querying the database. If the request is valid, a session is created using the user information obtained from the database, and the session information is returned in the response header so that the session ID is stored in the browser. Provides access to applications subject to
