首先要做的事情是:我不确定我要提供的信息是否足够,如果需要,我会很乐意添加其他信息。
我将一个复杂的结构序列化为JSON格式,Field [i] [0]是对象的“this”参考。
Fireson的JSON.Stringify输出(myObj)
只要我保留所有JS,这一切都很好并且正常工作。但现在我需要序列化并将其发送到我的后端以获取引用+计算信息。
现在我如何映射回我以前的参考?如何将此ref绑定回Object? 这个$$哈希的东西看起来是内部的和proprietarish所以我甚至不打扰尝试像Object [$$ hash] = ref或者其他什么。
这个概念可能看起来很糟糕,但结果是异步返回的,我需要一个标识符来将新信息绑定回原始对象。显然,我可以为此编制自己的标识符,但我想知道是否有一个选项以这种方式解决它。
修改
对象是这样创建的(同样)
var arrayOfObj = []
arrayOfObj.push(new Object.With.SomeSettersAndGetters());
Object有一个像
这样的方法function GetRef(){
return this;
}
我正在使用我的代码来保存ID / Ref。
谢谢!
答案 0 :(得分:1)
<强>更新强>
如果要更新一系列实例并发出许多Ajax请求,那么您需要查看Ajax长轮询和排队技术。您将无法保留引用,但无论您使用何种Ajax技术,都应使用以下技巧来保留引用。
在顶部添加长轮询,你很高兴。
这个想法是这样的:
假设服务器将以JSON格式响应。如果你需要参考原始参考文献,这是我的两分钱:
在服务器回复时更新确切的引用。假设您有10个Something
个实例存储在一个数组中。成功响应后,您可以使用Something
类中的方法以您想要的任何方式更新特定实例。
/**
* The array with something instances.
* @type {Array.<Something>}
*/
var instances = [];
/**
* The Ajax success function.
* @param {Event} event The event object.
*/
function ajaxSuccess(event) {
var response = event.target.getResponseText();
var actualResponse = JSON.parse(response);
for (var i = 0, len = actualResponse.length; i++) {
instances[i].setWhatever(actualResponse[i].whatever);
};
};
以上是一种更具程序性的方法。如果你想在JS中使用完整的OOP,那么你会想到模块化的设计模式。假设您有一个将数据加载到某个地方的模块。基本上,与该模块相关的所有内容都是实例属性。
var myModule = function() {
this.whatever = 1;
};
myModule.prototype.loadMore = function() {
var request = new XMLHttpRequest(),
that = this; // store a reference to this.
request.send(); // etc
request.onreadystatechange = that.onSucess;
};
myModule.prototype.onSucess = function(event) {
var response = JSON.parse(event.target.getResponseText());
this.whatever = response.whatever;
};
var moduleInstance = new myModule();
myModule.loadMore();
// Now the scope is always preserved. The callback function will be executed in the right scope.
让我们假设在事物的后端,你有一个模仿你的客户端JavaScript模型的模型类。假设您要更新显示文本的模型中的引用。我在后端使用Scala,但查看字段/属性并忽略语法。
case class Article (
title: String,// these are my DB fields for an Article.
punchline: String,
content: String,
author: String
);
// now assume the client is making a request and the server returns the JSON
// for an article. So the reply would be something like:
{"title": "Sample title", "punchline": "whatever", "content": "bla bla bla boring", "author": "Charlie Sheen"};
// when you do
var response = JSON.parse(event.target.getResponseText());
// response will become a JavaScript object with the exact same properties.
// again, my backend choice is irrelevant.
// Now assume I am inside the success function, which gets called in the same scope
// as the original object, so it refers TO THE SAME THING.
// the trick is to maintain the reference with var that = this.
// otherwise the onSuccess function will be called in global scope.
// now because it's pointing to the same object.
// I can update whatever I want.
this.title = response.title;
this.punchline = response.punchline;
this.content = response.content;
this.author = response.author;
// or I can put it all in a single variable.
this.data = response;
您需要记住的是需要保留范围。这就是诀窍。
当我var that = this;
时,我复制了对模型实例的引用。通过高阶而非当前范围记住该引用。
然后我告诉XMLHttpRequest
对象在完成后调用that.ajaxSuccess
。因为我使用了that
,所以ajaxSuccess
函数将在当前对象的范围内调用。因此,在ajaxSuccess
函数中,this
将指向原始的this
,即同一个实例。
当我写var that = this;