我在Eclipse中制作Design Studio自定义组件。我在我的contribution.xml文件中创建了一个属性'backgroundColor'。我可以在我的JavaScript内部调用这个xml文件并在本地进行调整,但有没有办法将这些更改再次上传到服务器xml文件?因为目前我的警报会返回所有新数据,但在服务器端没有任何反应。javascript在服务器上更改xml文件
的代码,我有:
Contribution.xml:
id="backgroundColor"
title="BackgroundColor"
type="Color"
group="Display"
visible="true"
bindable="true"/>
component.js:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "serverpath/contribution.xml", true);
xhttp.send();
function myFunction(xml) {
xml.responseXML.getElementsByTagName('property')[0].setAttribute("visible",false);
//this returns BackgroundColor so the call does work
alert(xml.responseXML.getElementsByTagName('property')[0].getAttribute("title"));
}