js字典操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js字典操作相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>javascript字典数据结构Dictionary实现</title>
    <script src="JS/jquery-easyui-1.5/jquery.min.js"></script>
    <script>
        function Dictionary() {
            var items = {};

            this.has = function (key) {
                return key in items;
            };

            this.set = function (key, value) {
                items[key] = value;
            };

            this.remove = function (key) {
                if (this.has(key)) {
                    delete items[key];
                    return true;
                }
                return false;
            };

            this.get = function (key) {
                return this.has(key) ? items[key] : undefined;
            };

            this.values = function () {
                var values = [];
                for (var k in items) {
                    if (this.has(k)) {
                        values.push(items[k]);
                    }
                }
                return values;
            };

            this.clear = function () {
                items = {};
            };

            this.size = function () {
                var count = 0;
                for (var prop in items) {
                    if (items.hasOwnProperty(prop)) {
                        ++count;
                    }
                }
                return count;
            };

            this.getItems = function () {
                return items;
            };
        }

        var dictionary = new Dictionary();
        dictionary.set(Gandalf, [email protected]);
        dictionary.set(John, [email protected]);
        dictionary.set(Tyrion, [email protected]);

        console.log(dictionary.has(Gandalf));
        console.log(dictionary.size());

        //console.log(dictionary.keys());
        console.log(dictionary.values());
        console.log(dictionary.get(Tyrion));


        dictionary.remove(John);

        console.log(dictionary.values());
        console.log(dictionary.get(Tyrion));
    </script>
</head>
<body>

    <form id="form1" runat="server">
        <div>
        </div>
    </form>
</body>
</html>

 

以上是关于js字典操作的主要内容,如果未能解决你的问题,请参考以下文章

Python代码阅读(第19篇):合并多个字典

Python代码阅读(第26篇):将列表映射成字典

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

Python代码阅读(第40篇):通过两个列表生成字典

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程