在我的应用程序中,我多次使用一个带有JSON数据的资源,例如。 books
。是否可以保护此数据不被服务器外部使用?例如,
在服务器地址(127.0.0.1)上,我正常获取数据,但是从另一个IP(2.2.2.2)我收到错误,而不是数据。
在网站上我使用的是简单的ajax:
bookGetCategories.click(function(event) {
event.preventDefault();
$.ajax({
url: '/remote/categories',
data: { 'book': $(this).data('id') },
})
.done(function(data) {
// sth with data
})
.fail(function() {
console.log("error");
alert("Eee... We got a problem.");
});
});