- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用jQuery AJAX函数将复杂的JavaScript对象传递给ASP.NET Web服务中的Web方法。我遵循了本文中的建议(以及其他建议):
Using Complex Types to Make Calling Services Less Complex
现在,我能够从客户端到浏览器以及从浏览器到客户端传递对象。但是,我遇到了一个我无法解决的问题。从客户端到浏览器传递复杂的对象时,数据在旅途中会以某种方式“丢失”。我在传递给Web服务的JSON字符串中存在该字符串,但是当ASP.NET AJAX将JSON字符串转换为该对象的新实例并将其传递给service方法时,就会丢失某些部分。
复杂类型是一个Meal对象,由几个属性,一顿用于膳食的食谱和一组单个Food项目组成。数组中的每个Recipe对象都包含一些属性和食品的“字典”(作为成分),食品作为键,其各自的数量作为值。 Food对象仅具有属性。看一下JavaScript中各种对象的结构:
function Meal() {
this.MealNumber;
this.MealName;
this.MealType;
this.Ratio;
this.DailyCalorieTarget;
this.Recipes = [];
this.Foods = []
}
function Recipe() {
this.RecipeNumber;
this.RecipeName;
this.RecipeInstructions;
this.Foods = [];
}
function Food() {
this.FoodNumber;
this.FoodName;
this.CaloriesPerGram;
this.FatPerGram;
this.CarbsPerGram;
this.DietaryFiberPerGram;
this.ProteinPerGram;
this.Category;
}
Meal:
int MealNumber;
string MealName;
string MealType;
float Ratio;
int DailyCalorieTarget;
List<Recipe> Recipes;
List<KeyValuePair<Food, float>> Foods;
Recipe:
int RecipeNumber;
string RecipeName;
string RecipeInstructions;
List<KeyValuePair<Food, float>> Foods;
Food:
int FoodNumber;
string FoodName;
float CaloriesPerGram;
float FatPerGram;
float CarbsPerGram;
float DietaryFiberPerGram;
float ProteinPerGram;
string Category;
var DTO = { 'meal': meal }
$.ajax({
type: "POST",
url: "KetoCompanionService.asmx/postMealObject",
data: JSON.stringify(DTO),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$('#returnedData').html(msg.d);
},
error: function (msg) {
$('#returnedData').html(msg.responseText);
}
});
{"MealNumber":1,"MealName":"Cheese Pizza, Strawberries, and Cream","MealType":"Dinner","Ratio":2.25,"DailyCalorieTarget":1600,"Recipes":[{"RecipeNumber":10,"RecipeName":"Cheese Pizza","RecipeInstructions":"Just fix the damned thing...","Foods":[{"Key":{"FoodNumber":1,"FoodName":"Eggs","CaloriesPerGram":1.432,"FatPerGram":0.823,"CarbsPerGram":0.234,"DietaryFiberPerGram":0,"ProteinPerGram":0.432,"Category":"Protein"},"Value":20},{"Key":{"FoodNumber":2,"FoodName":"Nuts","CaloriesPerGram":2.432,"FatPerGram":1.823,"CarbsPerGram":1.234,"DietaryFiberPerGram":1,"ProteinPerGram":1.432,"Category":"Protein"},"Value":10}]}],"Foods":[{"Key":{"FoodNumber":3,"FoodName":"Strawberries","CaloriesPerGram":0.332,"FatPerGram":0.723,"CarbsPerGram":0.034,"DietaryFiberPerGram":0.2,"ProteinPerGram":0.232,"Category":"Carbs"},"Value":120}]}
{"MealNumber":1,"MealName":"Cheese Pizza, Strawberries, and Cream","MealType":"Dinner","Ratio":2.25,"DailyCalorieTarget":1600,"Recipes":[],"Foods":[]}
function getMealData() {
$.ajax({
type: "POST",
url: "KetoCompanionService.asmx/getMealObject",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
meal = JSON.parse(msg.d);
// Insert the returned HTML into the <div>.
$('#returnedData').html(msg.d);
},
error: function (msg) {
$('#returnedData').html(msg.responseText);
}
});
}
[WebMethod]
[ScriptMethod(UseHttpGet=false, ResponseFormat = ResponseFormat.Json)]
public string getMealObject() {
JavaScriptSerializer js = new JavaScriptSerializer();
_meal = new Meal();
_meal.MealNumber = 1;
_meal.MealName = "Cheese Pizza, Strawberries, and Cream";
_meal.MealType = "Dinner";
_meal.Ratio = 2.25f;
_meal.DailyCalorieTarget = 1600;
Recipe _recipe1 = new Recipe();
_recipe1.RecipeNumber = 10;
_recipe1.RecipeName = "Cheese Pizza";
_recipe1.RecipeInstructions = "Just fix the damned thing...";
Food _recipe1Food1 = new Food();
_recipe1Food1.FoodNumber = 1;
_recipe1Food1.FoodName = "Eggs";
_recipe1Food1.CaloriesPerGram = 1.432f;
_recipe1Food1.FatPerGram = 0.823f;
_recipe1Food1.CarbsPerGram = 0.234f;
_recipe1Food1.DietaryFiberPerGram = 0.0f;
_recipe1Food1.ProteinPerGram = 0.432f;
_recipe1Food1.Category = "Protein";
KeyValuePair<Food, float> _kvp1 = new KeyValuePair<Food, float>(_recipe1Food1, 20.0f);
_recipe1.Foods.Add(_kvp1);
Food _recipe1Food2 = new Food();
_recipe1Food2.FoodNumber = 2;
_recipe1Food2.FoodName = "Nuts";
_recipe1Food2.CaloriesPerGram = 2.432f;
_recipe1Food2.FatPerGram = 1.823f;
_recipe1Food2.CarbsPerGram = 1.234f;
_recipe1Food2.DietaryFiberPerGram = 1.0f;
_recipe1Food2.ProteinPerGram = 1.432f;
_recipe1Food2.Category = "Protein";
KeyValuePair<Food, float> _kvp2 = new KeyValuePair<Food, float>(_recipe1Food2, 10.0f);
_recipe1.Foods.Add(_kvp2);
_meal.Recipes.Add(_recipe1);
Food _mealFood1 = new Food();
_mealFood1.FoodNumber = 3;
_mealFood1.FoodName = "Strawberries";
_mealFood1.CaloriesPerGram = 0.332f;
_mealFood1.FatPerGram = 0.723f;
_mealFood1.CarbsPerGram = 0.034f;
_mealFood1.DietaryFiberPerGram = 0.2f;
_mealFood1.ProteinPerGram = 0.232f;
_mealFood1.Category = "Carbs";
KeyValuePair<Food, float> _kvp3 = new KeyValuePair<Food, float>(_mealFood1, 120.0f);
_meal.Foods.Add(_kvp3);
string returnString = js.Serialize(_meal);
return returnString;
}
var DTO = "{ \"meal\" : " + meal + "}";
data:
属性发送。
最佳答案
解决方案-第1部分
我发现了为什么我的Recipe和Foods数组为空-我为ASP.NET中的每个Meal,Recipe和Food类创建的每个公共属性都具有getter和setter -除了List。我忽略了在该属性中放置一个setter,使其成为只读。因此,Web方法无权访问这些属性以进行设置。
但是,我还没有走出困境。即使我发现了丢失的数据,我的Foods数组也在服务器端出现{Key:null,Value:0},即使我正在发送食品数据键值对。
解决方案-第2部分
我已经解决了这个问题。
显然,当涉及到KeyValuePair对象列表时,ASP.NET AJAX存在反序列化JSON的问题。
因此,我没有使用类型List<KeyValuePair<Food, float>>
来存储我的单个食品,而是创建了自己的类,并使用属性FoodWithAmount
和FoodItem
调用了Amount
,而不是使用以下类:List<KeyValuePair<Food, float>>
正在使用此:List<FoodWithAmount>
。一旦实现了此更改,服务器端就可以将JSON字符串完美地转换为餐对象。
public class FoodWithAmount
{
Food _foodItem;
float _amount;
public Food FoodItem
{
get { return _foodItem; }
set { _foodItem = value; }
}
public float Amount
{
get { return _amount; }
set { _amount = value; }
}
//Parameterless constructor is necessary for serialization
public FoodWithAmount()
{
}
public FoodWithAmount(Food foodItem, float amount)
{
_foodItem = foodItem;
_amount = amount;
}
}
关于javascript - 将复杂的Javascript对象传递给ASP.NET Web服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25656787/
Github:https://github.com/jjvang/PassIntentDemo 我一直在关注有关按 Intent 传递对象的教程:https://www.javacodegeeks.c
我有一个 View ,其中包含自动生成的 text 类型的 input 框。当我单击“通过电子邮件发送结果”按钮时,代码会将您带到 CalculatedResults Controller 中的 Em
我有一个基本的docker镜像,我将以此为基础构建自己的镜像。我没有基础镜像的Dockerfile。 基本上,基本镜像使用两个--env arg,一个接受其许可证,一个选择在容器中激活哪个框架。我可以
假设我想计算 2^n 的总和,n 范围从 0 到 100。我可以编写以下内容: seq { 0 .. 100 } |> Seq.sumBy ((**) 2I) 但是,这与 (*) 或其他运算符/函数不
我有这个网址: http://www.example.com/get_url.php?ID=100&Link=http://www.test.com/page.php?l=1&m=7 当我打印 $_G
我想将 window.URL.createObjectURL(file) 创建的地址传递给 dancer.js 但我得到 GET blob:http%3A//localhost/b847c5cd-aa
我想知道如何将 typedef 传递给函数。例如: typedef int box[3][3]; box empty, *board[3][3]; 我如何将 board 传递给函数?我
我正在将一些代码从我的 Controller 移动到核心数据应用程序中的模型。 我编写了一个方法,该方法为我定期发出的特定获取请求返回 NSManagedObjectID。 + (NSManagedO
为什么我不能将类型化数组传递到采用 any[] 的函数/构造函数中? typedArray = new MyType[ ... ]; items = new ko.observableArray(ty
我是一名新的 Web 开发人员,正在学习 html5 和 javascript。 我有一个带有“选项卡”的网页,可以使网页的某些部分消失并重新出现。 链接如下: HOME 和 JavaScript 函
我试图将对函数的引用作为参数传递 很难解释 我会写一些伪代码示例 (calling function) function(hello()); function(pass) { if this =
我在尝试调用我正在创建的 C# 项目中的函数时遇到以下错误: System.Runtime.InteropServices.COMException: Operation is not allowed
使用 ksh。尝试重用当前脚本而不修改它,基本上可以归结为如下内容: `expr 5 $1 $2` 如何将乘法命令 (*) 作为参数 $1 传递? 我首先尝试使用“*”,甚至是\*,但没有用。我尝试
我一直在研究“Play for Java”这本书,这本书非常棒。我对 Java 还是很陌生,但我一直在关注这些示例,我有点卡在第 3 章上了。可以在此处找到代码:Play for Java on Gi
我知道 Javascript 中的对象是通过引用复制/传递的。但是函数呢? 当我跳到一些令人困惑的地方时,我正在尝试这段代码。这是代码片段: x = function() { console.log(
我希望能够像这样传递参数: fn(a>=b) or fn(a!=b) 我在 DjangoORM 和 SQLAlchemy 中看到了这种行为,但我不知道如何实现它。 最佳答案 ORM 使用 specia
在我的 Angular 项目中,我最近将 rxjs 升级到版本 6。现在,来自 npm 的模块(在 node_modules 文件夹内)由于一些破坏性更改而失败(旧的进口不再有效)。我为我的代码调整了
这个问题在这里已经有了答案: The issue of * in Command line argument (6 个答案) 关闭 3 年前。 我正在编写一个关于反向波兰表示法的 C 程序,它通过命
$(document).ready(function() { function GetDeals() { alert($(this).attr("id")); } $('.filter
下面是一个例子: 复制代码 代码如下: use strict; #这里是两个数组 my @i =('1','2','3'); my @j =('a','b','c'); &n
我是一名优秀的程序员,十分优秀!