4
,如果我有一個js對象,如以下存儲在js文件我如何可以調用子類屬性的功能,使用Apache犀牛
var _sampleProcessor = {
process: function(data){
...
}
}
我將如何使用Apache犀牛調用過程中的作用?
// sb holds the contents of the js file
Context cx = Context.enter();
Scriptable scope = cx.initStandardObjects();
cx.evaluateString(scope, sb.toString(), "Test", 1, null);
Object processor = scope.get("sampleProcessor ", scope);
if (processor == Scriptable.NOT_FOUND) {
System.out.println("processor is not defined.");
}
獲取對象的根很容易,但我如何遍歷對象樹的處理功能提前與酒店
嗨保羅,感謝這麼多的幫助,你的榜樣正是我一直在尋找 – yser77