这是代码:
$scope.createAnimator = ->
console.log($scope.animator.name)
console.log($scope.animator.description)
console.log($scope.animator.image)
$scope.buttonText = "Saving..."
$scope.animator.$save ->
$state.go('animators.all')
我从表单中获取了名称和说明字段,但这是'图像'字段:
<img-crop class="ng-isolate-scope" result-image="animator.image" name="image" image="originalImage">
当我尝试执行$animator.save
时,我会获得控制台中的所有字段 - 名称,描述和图像。
Rails代码:
render json: params and return
在输出渲染中,我看到如下内容:
{ image: "data:image/png;base64,iVBORw0K...", animator: {name: "...", description: "..."}}
我不明白为什么&#39;命名&#39;和&#39;描述&#39;是在动画师&#39;小组,但&#39;图像&#39;不是?我该如何解决?我需要移动图像&#39;对动画师来说&#39;组!