Sinatra メソッドは JSON を正しく受信していますが、何らかの理由で保存していません。Angular JS からルーティングされているため、次のいずれかが問題になる可能性があるのではないかと考えています。
- Sinatra へのルーティングは正しくありませんが、JSON は Sinatra ルート内の puts から表示されます
- データベースが変換された JSON を受け入れていません (理由がわからない)
- JSON は正しく解析されませんが、解析の手法はアプリの残りの部分と同じです。
以下のコードを投稿しました。なぜそれが機能しないのかについて何かアイデアがあれば、それは素晴らしいことです。
どうもありがとう。
app.rb
#edit download
put '/view1/downloadedit' do
@download = Download.get(1) #1 for testing, will be downloadID
data= JSON.parse(request.body.read)
puts @download
puts data
if
@download.update(data)
status 201
puts "edit saved okay"
else
status 201
puts "edit failed to SAVE"
end
end
controllers.js (角度)
// a scope function to edit a record
$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',
data : result
});
$scope.loadData();
};
}]);
app.rb の puts からの正しい JSON 出力を示すターミナルからのフィードバック
angular connection working
{"downloadID"=>1, "PageID"=>"1", "title"=>"nmnbm", "dlLink"=>"bnmnbm", "imgSrc"=>"mnbmnb", "caption"=>"aaa", "dlLive"=>1, "createdAt"=>nil}
クラスをダウンロード
#class download
class Download
include DataMapper::Resource
property :downloadID, Serial
property :PageID, String
property :title, String
property :dlLink, String
property :imgSrc, String
property :caption, String
property :dlLive, Integer
property :createdAt, DateTime
end
CSV としてエクスポートされた、ダウンロード用の MySQL テーブル構造
<table_structure name="downloads">
<field field="download_id" type="int(10) unsigned" null="NO" key="PRI" default="<null>" extra="auto_increment" />
<field field="page_id" type="varchar(50)" null="YES" key="" default="<null>" extra="" />
<field field="title" type="varchar(50)" null="YES" key="" default="<null>" extra="" />
<field field="dl_link" type="varchar(50)" null="YES" key="" default="<null>" extra="" />
<field field="img_src" type="varchar(50)" null="YES" key="" default="<null>" extra="" />
<field field="caption" type="longtext" null="YES" key="" default="<null>" extra="" />
<field field="dl_live" type="int(1)" null="YES" key="" default="<null>" extra="" />
<field field="created_at" type="datetime" null="YES" key="" default="<null>" extra="" />
<options name="downloads" engine="InnoDB" version="10" row_format="Compact" rows="8" avg_row_length="2048" data_length="16384" max_data_length="0" index_length="0" data_free="4194304" create_time="2013-11-04 17:26:56" update_time="<null>" collation="utf8_general_ci" create_options="" comment="" />
</table_structure>