5

我正在寻找如何在 php 中实现 StackOverflow / reddit 投票系统的示例。

基本上我想要向上和向下箭头框。有什么好的例子吗?

4

1 回答 1

6

那里有很多脚本但自己做并不难。

我以前使用过 jQuery(处理 AJAX)和一个小的 PHP 脚本。例如,一些伪代码:

// Some checking for recent votes from this user is appropriate here
if (isset($_POST['voteType'], $_POST['postId']) && $user->loggedIn) {
    // insert vote into database if not already inserted
    echo json_encode(array('error' => false));
} else {
    // bad request/hack attempt
    echo json_encode(array('error' => true, 'message' => 'Bad parameters sent'));
}

然后是一些 jQuery:

$('#upVote').click(function() {
    $.post('vote.php', {voteType: 'up', postId: 42}, 'updateIcon(data, textStatus)', 'json');
});

function updateIcon(data, textStatus) {
    // If error = false highlight the upvote icon
    // else show the error message returned
}

jQuery.post

于 2009-01-29T11:51:34.873 回答