drs7798 2015-12-08 22:17
浏览 59

PHP和NodeJS与mongodb

I try to save a Steamtrade URL in my mongodb but it doesn't work. If i try to save it, it just disappears and tells me to enter it again. I think there's a problem with one of these parts:

$(document).on('click', '.save-link', function() {
var link = $('input[rel="get-trade-link"]').val();
var escapedLink = escape(link);
if (link.indexOf('https://steamcommunity.com/tradeoffer/new/?partner=') < 0 && link.indexOf('token') < 0) {
    $('#error').show('fast').delay(1600).hide('fast');
    $('#error').html('<strong>Error: </strong>Enter Correct Url And Try Again!');
} else {
    var data = 'link=' + escapedLink;
    $.ajax({
        type: 'POST',
        url: '/ajax/tradelink.php',
        cache: false,
        data: data
    });
    $('#success').show('fast').delay(1600).hide('fast');
    $('#success').html('<strong>Link Successfully Saved. </strong>Dont Forget To Open Inventory To Receive winnings!');
    $('.token-block.promo').addClass('hidden');
} });

The tradelink.php is here:

    <?php 
session_start();
include ('../steamauth/userInfo.php');
if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
if(!isset($_SESSION['steamid'])) {
exit();
}
$userLink = $_POST['link'];
$userLink = addslashes($_POST['link']);
$m = new MongoClient();
$db = $m->selectDB('admin');
$collection = new MongoCollection($db, 'users');

// search for fruits
$fruitQuery = array('steamid' => $steamprofile['steamid']);

$cursor = $collection->find($fruitQuery);
foreach ($cursor as $doc) {
     $tradeLink = $doc['tradelink'];
}

if($tradeLink == '') {
    echo 'No entry found!';
    $person = array("steamid" => $steamprofile['steamid'], "tradelink" => "".$userLink."" , "type" => 'trade-link');
    $collection->insert($person);
}
else {
    echo 'Record found!';
    $obj = $collection->findOne();

    $update = array('tradelink' => "".$userLink."");

    $collection->update(
    array( 'steamid' => $steamprofile['steamid'] ),
    array( '$set' => $update )
);
}
}
 ?>
  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 #MATLAB仿真#车辆换道路径规划
    • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
    • ¥15 数据可视化Python
    • ¥15 要给毕业设计添加扫码登录的功能!!有偿
    • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
    • ¥15 微信公众号自制会员卡没有收款渠道啊
    • ¥100 Jenkins自动化部署—悬赏100元
    • ¥15 关于#python#的问题:求帮写python代码
    • ¥20 MATLAB画图图形出现上下震荡的线条
    • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘