我想为从数据库中检索的几篇文章构建上/下投票系统,但我想为每篇文章添加cookie以限制投票数,因此cookie将在一天内到期,但我不知道在哪里添加适当的代码。
更多详情:
<script>
function vote(id, value) { // function vote with 2 arguments: article ID and value (+1 or -1) depending if you clicked on the arrow up or down
var dataFields = { 'id': id, 'value': value }; // We pass the 2 arguments
$.ajax({ // Ajax
type: "POST",
dataType: "text",//This for indicate that you'r expecting a text response from server
url: "WebService.asmx/updateVotes",
data: dataFields,
timeout: 3000,
success: function (dataBack) {
if(
$('#number' + id).html(dataBack);// div "number" with the new number
$('#arrow_up' + id).html('<div class="arrow_up_voted"></div>'); // We replace the clickable "arrow up" by the not clickable one
$('#arrow_down' + id).html('<div class="arrow_down_voted"></div>'); // We replace the clickable "arrow down" by the not clickable one
$('#message' + id).html('<div id="alertFadeOut' + id + '" style="color: green">Thank you for voting</div>'); // Diplay message with a fadeout
$('#alertFadeOut' + id).fadeOut(1100, function () {
$('#alertFadeOut' + id).text('');
});
},
error: function () {
$('#number' + id).text('Problem!');
}
});
}
</script>
上面的代码是一个调用ajax方法的脚本,每次用户点击向上箭头时都会增加每个投票的数量,相反会减少。
public string updateVotes(string id,int value)
{
System.Threading.Thread.Sleep(500); // delay for 2.5 seconds Network latency
post p = db.posts.Find(int.Parse(id));
// assign new values
p.totalVotes += value;
db.Entry(p).State = System.Data.EntityState.Modified;
db.SaveChanges();
string dataBack =p.totalVotes.ToString();
return dataBack;
}
这是网络方法。
现在我试着大声思考并且我将以下函数编码为ewxamine,如果cookie是否为空。
public bool enableVoting()
{
HttpCookie cookie = Request.Cookies["enableVote"];
if (Request.Cookies["enableVote"] != null)
{
return true;
}
else
{
return false;
}
}
我知道这是错的,但至少我试过了。
还可以在每个用户为文章投票时为每个循环添加一个cookie来添加cookie。
foreach(post p in db.posts){
HttpCookie cookie = new HttpCookie("enableVote"+p.ID);
cookie.Value = "article:"+p.ID;
cookie.Expires = DateTime.Now.AddDays(1);
Response.Cookies.Add(cookie);
}
答案 0 :(得分:0)
一个建议。不要为此使用cookies。他们很容易被操纵。清除浏览器历史记录,您可以再次投票......再次投票。
相反,在数据库中创建一个投票表,并添加一个记录,其中包含选民的IP和他们投票的帖子的ID以及时间戳。
通过这种方式,您可以轻松计算投票数量,当有人投票时,您可以快速检查IP最后一次投票支持该文章(或任何文章)。
同样在您的数据库中使用投票表,您可以轻松捕获正在上升或下降所有内容的机器人,并限制单个IP可以对任何文章投票的数量(每隔几分钟不超过1或2票)
如果您担心同一IP背后的多个人无法投票,您可以包含浏览器名称,并且只计算唯一的IP和浏览器版本作为投票。这是相当独特的。它也可以被操纵,但对普通用户来说有点困难。
<强>更新强> 我使用此代码是为了在我的一个MVC项目中获得一个有点独特的键。用户可以切换浏览器并再次投票,但需要花费一些精力,而不仅仅是清除浏览器历史记录。
我将IP,浏览器和国家/地区组合成一个字符串,并将其用作投票密钥。
public class UserInfo
{
public String ip { get; private set; }
public String browser { get; private set; }
public String country { get; private set; }
public UserInfo(HttpRequestBase Request)
{
ip = Request.UserHostAddress;
browser = Request.Browser.Platform + " " + Request.Browser.Type + "/" + Request.Browser.Id + " " + Request.Browser.Version;
country = "";
if (Request.UserLanguages.Length > 0)
country += " - " + Request.UserLanguages.ElementAt(0);
}
}
我在这里使用这个系统:http://filepublicator.com/检查用户是否有任何先前上传的文件(尝试上传某些内容并关闭浏览器并再次访问它,它将在列表中)。< / p>