如何在 KRL 规则中获取用户位置?
- 方法是什么?
- 使用该方法的优点或缺点是什么?
这是一个简单的例子
rule locations is active {
select using ".*" setting ()
pre {
whereareyou = location:region();
msg = <<
#{whereareyou}
>>;
}
notify("I think you live in", msg) with sticky = true;
}
这是文档。 http://docs.kynetx.com/docs/Location
您会发现的问题是,有时 ip 并不能真正代表用户的真实位置,因为用户可能正在使用代理。此外,对于大多数 ISP,IP 被注册到一个位置和 ISP 的集线器,而不是在任何给定时刻使用 IP 的直接位置。
随着浏览器中 html 5 和位置 API 的出现,将来可能会获得更准确的位置,但目前尚未在 KRL 中实现。
HTM5 浏览器位置现在可用,但需要一些 javascript 才能实现。这是一个使用浏览器位置 API 的稍旧的应用程序。这可能会被更新为不使用表单,但这里仅供参考:
ruleset a8x47 {
meta {
name "WikiNearMe"
description <<
Shows Wikipedia content near the user.
>>
author "TubTeam"
logging off
}
dispatch {
domain "wikipedia.org"
}
global {
datasource placearticles:JSON <- "http://ws.geonames.org/findNearbyWikipediaJSON";
}
rule getlocation is active {
select when pageview "/wiki/" setting ()
pre {
form = <<
<div id="my_div">
<form id="nearmeform" onsubmit="return false" style="display:none;">
<input type="text" name="lat" id="nearmelat"/>
<input type="text" name="lon" id="nearmelon"/>
<input type="submit" value="Submit" />
</form>
<div id="nearmelinks" style="text-align:left;">
<h2>Nearby Links</h2>
</div>
</div>
>>;
}
// notify("Hello World", "This is a sample rule.");
emit <<
navigator.geolocation.getCurrentPosition(function(position){
$K("#nearmelat").val(position.coords.latitude);
$K("#nearmelon").val(position.coords.longitude);
$K("#nearmeform").submit();
//alert("lat: " + position.coords.latitude + " lon: " + position.coords.longitude);
});
>>
{
append("#siteNotice", form);
watch("#nearmeform", "submit");
}
}
rule shownearby is active {
select when web submit "#nearmeform"
foreach datasource:placearticles({"lat":page:param("lat"), "lng":page:param("lon"), "style":"full", "formatted":"true"}).pick("$..geonames") setting (item)
pre {
title = item.pick("$..title");
link = item.pick("$..wikipediaUrl");
}
append("#nearmelinks", "<a href='http://#{link}'>#{title}</a><br/>");
}
}