在我的 Jquery 插件中执行循环的更好方法?

发布于 2025-01-08 05:55:29 字数 1541 浏览 0 评论 0原文

我在我正在制作的插件中创建了一个 for(var i in obj) ,但我觉得它可以更干净,而不是有一堆 if()代码> 语句。我正在尝试根据对象项的值创建一个字符串。基本上,如果对象项存在,则将值放入字符串中。希望这是有道理的,如果没有,也许代码会更好地解释它;

以下是我调用插件的方式:

$.aicc('post',{status:'passed'});

$.aicc('post',{lesson_location:'1_25 ',status:'通过'});

$.aicc('post',{lesson_location:'1_25',status:'passed',score='85'});

它需要是动态的!

代码

(function($)
{
    var methods =
    {
        init:function(p)
        {
            alert(p);
        },
        get:function(p)
        {
            alert(p);   
        },
        post:function(p)
        {
            var output = '';
            for(var i in p)
            {
            if(i=='lesson_location')
            {
                output += i+'='+p[i]+'\n';
            }
            if(i=='status')
            {
                output += i+'='+p[i]+'\n';
            }
            alert('[CORE]\n'+output);
         }
     };
$.aicc = function(method)
{
    if(methods[method])
    {
      return methods[method].apply(this,Array.prototype.slice.call(arguments,1));
    }
    else if(typeof method==='object'||!method)
    {
      return methods.init.apply(this,arguments);
    }
    else
    {
      $.error('Method ' + method+' does not exist on jQuery.tooltip');
    }
};
})(jQuery);

所需输出"[CORE]\nlesson_location=Page1\ncredit=学分\nscore=85\ntime="00:00:00\nlesson_status=通过"

I've created a for(var i in obj) in a plugin that I'm making, but I feel like it can be cleaner rather than have a bunch of if() statements. I am trying to create a string depending on the value of an object item. Basically if the object item is present then put the value in the string. Hopefully that makes sense, if not maybe the code will explain it better;

Here is how I am calling the plugin :

$.aicc('post',{status:'passed'});

or

$.aicc('post',{lesson_location:'1_25',status:'passed'});

or

$.aicc('post',{lesson_location:'1_25',status:'passed',score='85'});

It needs to be dynamic!

Code

(function($)
{
    var methods =
    {
        init:function(p)
        {
            alert(p);
        },
        get:function(p)
        {
            alert(p);   
        },
        post:function(p)
        {
            var output = '';
            for(var i in p)
            {
            if(i=='lesson_location')
            {
                output += i+'='+p[i]+'\n';
            }
            if(i=='status')
            {
                output += i+'='+p[i]+'\n';
            }
            alert('[CORE]\n'+output);
         }
     };
$.aicc = function(method)
{
    if(methods[method])
    {
      return methods[method].apply(this,Array.prototype.slice.call(arguments,1));
    }
    else if(typeof method==='object'||!method)
    {
      return methods.init.apply(this,arguments);
    }
    else
    {
      $.error('Method ' + method+' does not exist on jQuery.tooltip');
    }
};
})(jQuery);

Desired output : "[CORE]\nlesson_location=Page1\ncredit=Credit\nscore=85\ntime="00:00:00\nlesson_status=Passed"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜血缘 2025-01-15 05:55:29

如果您只需要“打印”对象的键和值,也许以下内容就足够了?

var output = '';
for (var i in p) { 
    output += i + '=' + p[i] + '\n';
}

If you just need to 'print out' both keys and values of your object, perhaps the following would suffice?

var output = '';
for (var i in p) { 
    output += i + '=' + p[i] + '\n';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文