Debug javascript in opera mini

前端 未结 2 1676
忘掉有多难
忘掉有多难 2021-02-06 12:59

How do i debug javascript in opera mini?

I have already installed opera mini emulator.

can someone help me how do i debug javascript remotely with dragonfly (fir

2条回答
  •  伪装坚强ぢ
    2021-02-06 13:22

    Opera Mini supports console API like this:

    server:console?post=http://url/to/your/script
    

    OR

    You can dump your log data to source and get source using this command(this fill display source code of current/last page for your device):

    server:source
    

    OR

    Use remote console services like jsconsole.com. You add script tag with jsconsole script and key. After this use this key on jsconsole site to get the log.

    NB: jsconsole script rewrites console.log calling via ajax request

提交回复
热议问题