我正在尝试编写OSLC Delegated UI: (http://open-services.net/bin/view/Main/OslcCoreSpecification#Delegated_User_Interface_Dialogs)
现在它说你应该做以下事情:
所以我使用了这段代码:
var response = '{"oslc:results" : [{}]}';
var returnURL = window.name;
window.name = response;
window.location = returnURL;
但是我看到,当我设置window.location
时,window.name
被重新设置回之前的值,然后我使用行window.name = response;
设置它是正确的行为吗?