Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I really like using knockout.js and templates to render my web-app's pages. But one thing I keep having trouble with is debugging faults in templates.

Say I want to bind to a property called 'items' but in the template i make a typo and bind to the (non existing) property 'item'.

Using chrome debugger the only message that I get is that 'item' is not defined.

Are there tools, techniques or coding styles that help me get more information about the binding fault?

share|improve this question

5 Answers

up vote 131 down vote accepted

One thing that I do quite often when there is an issue with what data is available at a certain scope is to replace the template/section with something like:

<div data-bind="text: ko.toJSON($data)"></div>

or if you want a slightly more readable version:

<pre data-bind="text: JSON.stringify(ko.toJS($data), null, 2)"></pre>

This will spit out the data that is being bound at that scope and let you make sure that you are nesting things appropriately.

Update: as of KO 2.1, you can simplify it to:

<pre data-bind="text: ko.toJSON($data, null, 2)"></pre>

Now the arguments are passed on to JSON.stringify.

share|improve this answer
ohh. I've need to ask this question too. Used complicated piece of code to console.log data. Now it's much easier. – AlfeG Feb 13 '12 at 15:03
3  
+1 Great tip. This is one the easiest ways to debug the templates or bindings for that matter. I do it quite often. – John Papa Feb 13 '12 at 18:36
Nice tip Ryan! Any more of such debugging tips? If not then I'll mark this as answered :P – RogierBessem Feb 14 '12 at 8:15
2  
I have to think more about debugging tips and maybe make a blog post. Another one that comes to mind is doing manual subscriptions against observables or computed observables to watch values changing. Like if name is an observable doing name.subscribe(function(newValue) { console.log("name", newValue); }); – RP Niemeyer Feb 14 '12 at 14:55
Wish I could vote up the readable version again. Light years ahead of the plain toJSON method. – Steve Duitsman Apr 10 '12 at 21:01
show 1 more comment

I found another one that can be helpfull. I was debugging some bindings and tried using Ryans example. I got an error that JSON found a circular loop.

<ul class="list list-fix" data-bind="foreach: detailsView().tabs">
 <li>
   <pre data-bind="text: JSON.stringify(ko.toJS($parent), null, 2)"></pre>
   <a href="#" data-bind="click: $parent.setActiveTab, text: title"></a>
 </li>
</ul>

But, using this approach a replaced the data-bind value with the following:

  <ul class="list list-fix" data-bind="foreach: detailsView().tabs">
    <li>
      <pre data-bind="text: 'click me', click: function() {debugger}"></pre>
      <a href="#" data-bind="click: $parent.setActiveTab, text: title"></a>
    </li>
  </ul>

Now if i click on the PRE element while having the chrome debug window open, I get a nicely filled scope variables window.

Found a little better way for it:

<pre data-bind="text: ko.computed(function() { debugger; })"></pre>
share|improve this answer
Your <pre ... debugger ... > trick is a lifesaver. – Ward Apr 11 '12 at 21:56

Check out a really simple thing I use:

function echo(whatever) { debugger; return whatever; }

Or

function echo(whatever) { console.log(whatever); return whatever; }

Then in html, say, you had:

<div data-bind="text: value"></div>

Just replace it with

<div data-bind="text: echo(value)"></div>

More advanced:

function echo(vars, member) { console.log(vars); debugger; return vars[0][member]; }

<div data-bind="text: echo([$data, $root, $parents, $parentContext], 'value')"></div>

Enjoy :)

UPDATE

Another annoying thing is when you are trying to bind to an undefined value. Imagine in the example above that the data object is just {} not { value: 'some text' }. In this case you will be in trouble, but with the following tweak you will be fine:

<div data-bind="text: $data['value']"></div> 
share|improve this answer

I created a github project called knockthrough.js to help visualize these errors.

https://github.com/JonKragh/knockthrough

It highlights binding errors and gives a dump of the datacontext on that node.

You can play with a sample here: http://htmlpreview.github.io/?https://github.com/JonKragh/knockthrough/blob/master/default.htm

enter image description here

Credit to RP Niemeyer for his excellent Knockout code samples on SO to get me to this point.

share|improve this answer

Define a bindingHandler once, somewhere in your JavaScript library files.

ko.bindingHandlers.debug = 
{
    init: function(element, valueAccessor) 
    {
        console.log( 'Knockoutbinding:' );
        console.log( element );
        console.log( valueAccessor() );
    }
};

than simply use it likes this:

<ul data-bind="debug: $data">

Advantages:

  • Use the full power of the Chrome debugger, like Reveal in Elements Panel
  • You don't have to add custom elements to your DOM, just for debugging
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.