Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
531 views
in Technique[技术] by (71.8m points)

javascript - Check if URL available or not using AngularJS

I have one URL like www.testsite.com/mypage.I need to check if URL is exist or not using AngularJS.

Is it possible. Any one please suggest.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You need to wrap this test by using a server-side api (or service) because embedding this kind of test in JavaScript is considered as cross-domain-query (could be considered as an attack).

For example, consider you have written a wrapper under /myRemoteSiteTester then I would try whith somethings like that:

$http.get('/api/myRemoteSiteTester', {params: {target: myUrl}}) 
       .success(function(data) {
              alert(data);
        });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...