gpt4 book ai didi

javascript - for循环导致页面崩溃

转载 作者:行者123 更新时间:2023-11-30 20:57:57 24 4
gpt4 key购买 nike

索引.php

<?php
require_once("inc/db.php");
require_once("inc/map.php");

$db = new Database();
$map = new Map($_POST['x'], $_POST['y']);
$map->createMap();
$map->battle();
$map->move();
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
</script>
</head>
<body>

</body>
</html>

数据库.php

<?php
class Database{
private $config;
protected $sql;

public function __construct(){
$this->Connect();
}

public function Connect(){
$this->config = parse_ini_file("config.ini");
$con = $this->config;
$this->sql = new PDO("mysql:host={$con['host']}; dbname={$con['dbname']}",
$con['username'],$con['password']);
$this->sql->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
}
?>

map .php

<?php 
class Map extends Database{

public $x;
public $y;
public $width = 5;
public $height = 5;

public function __construct($x,$y){
$this->x = $x;
$this->y = $y;
}

public function createMap(){
for($x=0; $x < $this->width; $x++){
for($y=0; $y < $this->height; $y++){
Database::Connect();
echo "<div id='map'>";
echo "<div class='map_columns' title='{$x}_{$y}' data-x='{$x}' data-y='{$y}' id='{$x}_{$y}'>";
$this->spawnPlayers($x,$y);
echo "</div>";
}
echo "<div class=\"break\"></div>";
}
}

public function spawnPlayers($x,$y){
$stmt = $this->sql->prepare('SELECT * FROM user WHERE x = "'.$x.'" AND y = "'.$y.'"');
$stmt->execute();
while($rows = $stmt->fetch(PDO::FETCH_ASSOC)){
echo "<img title='{$rows['name']} \n {$rows['x']}|{$rows['y']}'>";
}
}

public function battle(){
$stmt = $this->sql->prepare("SELECT * FROM user GROUP BY x,y HAVING count(*) > 1");
$stmt->execute();
$rows = $stmt->fetch(PDO::FETCH_ASSOC);
if($rows){
echo "<input type='submit' id='battle-btn' value='Fight'>";
} else{
}
}

public function move(){
if(isset($this->x) && isset($this->y)){
$stmt = $this->sql->prepare("UPDATE user SET x = '$this->x', y = '$this->y' WHERE name = 'Wiz'");
$stmt->execute();
}
}
}
?>

索引.js

$(document).ready(function(){
$(document).on("click", ".map_columns", function(){
var x = $(this).attr("data-x");
var y = $(this).attr("data-y");
$.post('./index.php', {x: x, y: y}, function(){

});
});

setInterval(function(){
$("#map").load("./index.php");
}, 1000);
});

所以我使用 for 循环制作了一张 map ,输出的数据是用户坐标。无论我在 map 上的哪个位置按下,它都会将用户坐标更新到该位置。这按预期工作,但我有一个问题。我需要 map 在用户坐标更新时自动刷新/更新。

所以我的方法是在 ajax 中使用 .load() ,就像我在大多数项目中使用的那样,但这里的区别在于 for 循环。我假设因为它第二次重新插入 for 循环,所以它会导致一切崩溃。我怎么解决这个问题?我知道游戏也是如此,但我想不出反解决方案。编写的代码非常容易理解。

我重写了原始版本,因此对于 stackoverflow 来说它是干净且易于理解的,原始版本如下所示:

https://i.gyazo.com/a34793a0af0344b867f0537830da5cd3.mp4

它正在使用不可行的 html 自动更新。那么请问如何使用新信息(玩家轴)更新 div 而不会导致页面崩溃?

最佳答案

问题是您正在将整个页面加载到 #map DIV 中,但您只想替换它自己的内容。将其更改为:

    $.get("index.php", function(response) {
$("#map").replaceWith($(response).find("#map"));
});

创建一个只返回您想要的内容的新脚本可能会更好,而不是使用 index.php 然后忽略所有其他内容。

关于javascript - for循环导致页面崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47462807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com