I use angularjs version for this json-editor .
Page Controller:
var TaskEditCtrl = function($scope, $http, $routeParams, Notification, Task) { // Загружаем сам объект $scope.task = Task.get({id: $routeParams.taskId}); // Загружаем схему $scope.schema = $http.get("/static/schema/schema.json"); }; Page Template:
<json-editor schema="schema" startval="task.data"> The data in the Editor not loaded, an empty editor opens.
How can I solve this problem (if it is not an error in the library)?