使用angularjs打印控制台日志

时间:2016-04-25 17:02:20

标签: angularjs

您想了解如何在html中打印此CONSOLE.LOG消息。

this.obj = function () {
        return console.log("Teste");

    }

2 个答案:

答案 0 :(得分:0)

请在功能中注入$log service,然后使用它:

this.obj = function () 
   $log.info("Teste");
}

答案 1 :(得分:0)

function myObj()
{

this.obj = function()
{
console.log('hello');
}
}

var myobj = new myObj();
myobj.obj();