将多模型表单从Angular更新为Sinatra

时间:2013-11-05 17:16:40

标签: javascript ruby angularjs sinatra

我目前在Angular中更新表单并将更新推送到Sinatra时遇到问题。

应该:

  • 单击时,将显示编辑当前项目的表单(从项目范围显示每个字段的当前数据)。
  • 提交时,它正在尝试更新到不同的范围(updateinfo)。我不确定,但我是否需要使用multiscope或一个范围来更新它?
  • 目前脚本发送正确的downloadID参数,但提交的范围中的JSON是我认为的,不正确。
  • 另外,我不确定Sinatra app.rb语法是否正确,对于这些框架的新手,很难在网上找到有用的文档。

如果有人能提供帮助,我们将非常感激。

downloads.html

<div ng-show="showEdit">
                <form ng-submit="updateinfo(item.downloadID); showDetails = ! showDetails;">
                    <div class="input-group"><label name="title">Title</label><input type="text"
                                                                                     ng-model="item.title"
                                                                                     value="{{item.title}}"/></div>
                    <div class="input-group"><label name="caption">Download caption</label><input type="text"
                                                                                                  ng-model="item.caption"
                                                                                                  value="{{item.caption}}"/>
                    </div>
                    <div class="input-group"><label name="dlLink">Download link</label><input type="url"
                                                                                              ng-model="item.dlLink"
                                                                                              value="{{item.dlLink}}"/>
                    </div>
                    <div class="input-group"><label name="imgSrc">Image source</label><input type="url"
                                                                                             ng-model="item.imgSrc"
                                                                                             value="{{item.imgSrc}}"/>
                    </div>


                    <!-- download live input types need to be parsed as integers to avoid 500 internal server error   -->
                    <div class="input-group"><label name="imgSrc">
                        <label name="dlLive">Download live</label><input type="radio" ng-model="download.dl_live"
                                                                         value="1"/>
                        <label name="dlLive">Not live</label><input type="radio" ng-model="download.dl_live"
                                                                    value="0"/></div>
                    <div class="input-group"><label name="imgSrc"><input type="submit"/></div>
                </form>

controllers.js

$scope.loadData = function () {
    $http.get('/view1/downloadData').success(function (data) {
        $scope.items = data;
    });
};
$scope.loadData();
$scope.updateinfo = function(downloadID) {
    id = downloadID
    var result = $scope.items.filter(function( items ) {
        return items.downloadID == id;
    });
    console.log(result);
    updatedata = $scope.items
    $http({
        method : 'PUT',
        url :  '/view1/downloadedit/:downloadID',
        data : result
    });

    };

app.rb

#edit download
put '/view1/downloadedit' do
puts 'angular connection working'
ng_params = JSON.parse(request.body.read)
puts ng_params
@download = Download.update(ng_params)
end

1 个答案:

答案 0 :(得分:0)

试图使用错误的范围。将范围更正为项目后,正在路由正确的JSON:

$scope.updateinfo = function(downloadID) {
id = downloadID
var result = $scope.items.filter(function( items ) {
    return items.downloadID == id;
});
console.log(result);
updatedata = $scope.items
$http({
    method : 'PUT',
    url :  '/view1/downloadedit/:downloadID',
    data : result
});