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

Categories

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

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

1 Answer

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);
        });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...