Inspectelement>sourceなどを介してブラウザでJSコードを表示できることを認識しています。たとえば、次のコードがあり、「ソース」の下に表示できます。
$.ajax({
url: baseUrl + 'location/insert_user_location',
type: "post",
data: {address:address,lat:lat,lng:lng,acc:acc},
}).done(function(){
getUserLocation();
});
これは安全ではありませんか、それとも重要ですか?