Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Ext Js 4.2 领域的新手,我需要保存一个具有 hasMany 关联的模型,我在这里找到了解决方案(通过覆盖 Json Writer)
http://www.sencha.com/forum/showthread.php?141957-Saving-objects-that-are-linked-hasMany-relation-with-a-single-Store/page4
但我不知道将包含覆盖函数的文件放在哪里,以及如何使其工作。有这么好心的给我解释一下吗?提前致谢。
您可以将文件放在 Script 文件夹中,并使方法的实现具有许多关联。
就像:
var hasManyAssociation = function(){
// 在这里写你的代码...........
}
现在您可以在需要的地方调用该函数。