I'm having a bit of an issue with Knockout.js and its mapping plugin. Essentially I want to start with no data, and then on page load make an Ajax request to load in the information. I know that the Ajax request is working as intended cause I'm logging to the console the data as it's being returned.
var projectId = @Model.Project.Id;
var stories;
viewModel = ko.mapping.fromJS(stories);
$.ajax({
type: "GET",
url: "/Projects/JsonDetails",
data: {id: projectId},
success: function (data) {
stories = data.stories;
ko.mapping.fromJS(stories, viewModel);
console.log(stories);
}
});
The console is logging the the data correctly. so I know that the Ajax request is working properly.
l
View Markup:
<section id="project-stories" data-bind="foreach: stories">
<div class="project-story-container drop-shadow">
<div class="story-summary">
Story Summary
</div>
<div class="story" data-bind="attr:{'data-id': Id}">
As a <span class="actor" data-bind="text: Actor"> </span> I want to <span class="objective" data-bind="text: Objective"> </span>, so that <span class="justification" data-bind="text: Justification"></span>.
</div>
<div class="story-controls">
<a href="#">Edit</a>
</div>
</div>
</section>
I've even tried calling:
var projectId = @Model.Project.Id;
var stories;
viewModel = ko.mapping.fromJS(stories);
ko.applyBindings(viewModel);
$.ajax({
type: "GET",
url: "/Projects/JsonDetails",
data: {id: projectId},
success: function (data) {
stories = data.stories;
ko.mapping.fromJS(stories, viewModel);
console.log(stories);
}
});
But that just makes it worse cause KO complains that the bindings aren't setup.

Can anyone see what I'm doing wrong? Eventually I want the view model to have more events wired in, which I know will be another challenge. But right now I can't even get the bindings to update properly when the Ajax request finishes.
Going off the tutorial here: http://knockoutjs.com/documentation/plugins-mapping.html
-------------------- UPDATE --------------------------
I was able to answer my own question by referencing this StackExhange Post:
Knockout JS mapping plugin confusion
var projectId = @Model.Project.Id;
var viewModel ={};
$.ajax({
type: "GET",
url: "/Projects/JsonDetails",
data: {id: projectId},
success: function (data) {
viewModel.stories = ko.mapping.fromJS(data.stories);
ko.applyBindings(viewModel);
}
});
Problem was I needed to have an empty view model for this to work.