如何为简单的Crud应用程序创建编辑功能? -使用VANILLA JAVASCRIPT进行CRUD操作

时间:2019-12-03 16:13:21

标签: javascript arrays function crud operation

因此,我仅使用JavaScript创建了一个简单的CRUD应用程序。 现在,您可以将国家/地区添加到阵列中,并从阵列中删除国家/地区。 我希望能够编辑数组中的现有国家,例如,我想将“斯德哥尔摩”更改为“西班牙”。

该编辑功能是什么样的? 下面是我当前的代码,html和javascript。

    <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
    <div class="container">
    <h1>Städer</h1>
    <div id="output"></div>
    <div class="submit">
    <input type="text" id="staden" placeholder="Ny stad"/>
    <button onclick="laggaTill()" id="btnClick">Lägg till</button>
        </div>
    <script src="checkpoint1.js"></script>
    </div>
</body>
</html>

var stader = ["Stockholm", "Köpenhamn", "Paris"];
uppdateraOutput();

function uppdateraOutput(){
   var output = "";
   for (var i = 0; i < stader.length; i ++) {
       output += stader[i] + "[<span title = 'Ta bort " + stader[i] + "' onclick= 'taBort("+ i +")'> x </span>]<br/>";
   }
   document.getElementById("output").innerHTML = output;
}

function laggaTill() {
   console.log("Lägg till");
   var stad = document.getElementById("staden").value;
   if (stad.length != 0) {
       stader[stader.length] = stad;
       document.getElementById("staden").value = "";
       uppdateraOutput();
   }
}

function taBort(id) {
   console.log("Ta bort: " + id);
   var staderTemp = [];
   for (var i = 0; i < stader.length; i++){
       if (i !=id) {
           staderTemp.push(stader[i]);
       }
   }

   stader = staderTemp;
   uppdateraOutput();
}

function edit() {

}

2 个答案:

答案 0 :(得分:1)

您可以为每个项目添加单击功能,当您单击文本时,它会打开一个提示窗口以更改文本。

我更改了uppdateraOutput函数,以在文本中添加单击功能。

<span onclick='edit("+ i +")'>" + stader[i] + "</span>

就像下面的代码一样。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
    <div class="container">
    <h1>Städer</h1>
    <div id="output"></div>
    <div class="submit">
    <input type="text" id="staden" placeholder="Ny stad"/>
    <button onclick="laggaTill()" id="btnClick">Lägg till</button>
        </div>
    <script src="checkpoint1.js"></script>
    </div>
	
	<script>
	var stader = ["Stockholm", "Köpenhamn", "Paris"];
uppdateraOutput();

function uppdateraOutput(){
   var output = "";
   for (var i = 0; i < stader.length; i ++) {
       output += "<span onclick='edit("+ i +")'>" + stader[i] + "</span> [<span title = 'Ta bort " + stader[i] + "' onclick= 'taBort("+ i +")'> x </span>] <br/>";
   }
   document.getElementById("output").innerHTML = output;
}

function laggaTill() {
   console.log("Lägg till");
   var stad = document.getElementById("staden").value;
   if (stad.length != 0) {
       stader[stader.length] = stad;
       document.getElementById("staden").value = "";
       uppdateraOutput();
   }
}

function taBort(id) {
   console.log("Ta bort: " + id);
   var staderTemp = [];
   for (var i = 0; i < stader.length; i++){
       if (i !=id) {
           staderTemp.push(stader[i]);
       }
   }

   stader = staderTemp;
   uppdateraOutput();
}

function edit(index) {
	var item = prompt("Please enter your name", stader[index]);

	if (item !== null && item !== "") {
		stader[index] = item;
	}	
	uppdateraOutput();
}
	</script>
	
</body>
</html>

答案 1 :(得分:0)

我看到两个问题。

  1. 使用文本处理document / html。这很难维持。在学习的同时还可以,但并非如此。
  2. 遍历数组以进行每次更改,添加和编辑

我为您提供了一种不同的方法,而没有执行上述两个问题。

        var clickedItem = null;
        function clickListener(e) {
            document.getElementById('staden').value = e.target.id
            clickedItem = e.target
        }
        function laggaTill() {
            var ul = document.getElementById("list")
            var stad = document.getElementById("staden").value;
            var li = document.createElement("li")
            li.id = stad
            li.addEventListener("click", clickListener)
            li.appendChild(document.createTextNode(stad))
            ul.appendChild(li)
            document.getElementById("staden").value = ""
        }
        function edit() {
            var item = document.getElementById(clickedItem.id)
            var stad = document.getElementById('staden').value
            item.id=stad
            item.innerHTML = stad
            clickedItem = null
            document.getElementById("staden").value = ""
        }