1

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

它应该:

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

如果有人可以提供帮助,将不胜感激。

下载.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>

控制器.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
    });

    };

应用程序.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
4

1 回答 1

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
});
于 2013-11-05T20:37:08.813 回答