i verwenden reste Bibliothek api auf Titan Appcelerator zu handhaben:Titanium Appcelerator reste Sammlung
das ist meine config:
api.config({
debug : true,
autoValidateParams : false,
validatesSecureCertificate : false,
timeout : 4000,
url : Kb.baseUrl,
models: [{
name: "product",
id: "id",
//content: "retArray",
collections: [{
name: "products",
content: "response",
read: "get_products"
}],
}],
methods : [
{
name : "get_products",
post : "api/get_product"
}
],
...
So wie das i holen (funktioniert perfekt):
var p = Alloy.Collections.get_products;
p.fetch({
success:function(m,r){
console.log(r)
}
});
Nun muss ich das Objekt zu posten (das funktioniert nicht, warum?):
p.fetch({
data:{'id':'2'},
success:function(m,r){ console.log(r); }
});
Dieser zweite Abruf funktioniert nicht, haben Sie eine Idee?
danke.