美文网首页
cocos creator问题整理

cocos creator问题整理

作者: SpinachC | 来源:发表于2018-06-18 19:13 被阅读27次
    1. hasOwnPropery失效
    var o = {
        "id": 1
    };    
    console.log(o.hasOwnPropery("id"));
    

    错误信息

    Hall.js:38 Uncaught TypeError: o.hasOwnPropery is not a function
        at callback (Hall.js:38)
        at XMLHttpRequest.xhr.onreadystatechange (Http.js:29)
    

    不知道为什么不行, 后来改用

    var o = {
        "id": 1
    };    
    console.log("id" in o);
    

    相关文章

      网友评论

          本文标题:cocos creator问题整理

          本文链接:https://www.haomeiwen.com/subject/ltnneftx.html