I have a SAPUI5 application and want to open a link if I click on a button.
I get the value of the specific link from an OData call and a normal <Link>
control is working fine with the remote data path.
<Link href="{oData>/Url}" target="_blank" text="Click me" />
Tried several ways to open the website with a <Button>
instead, but none of them were working for me.
I tried to put a Button inside of it.
<Link target="_blank" href="{oData>/Url}" text="Click me">
<Button text="Open Website"/> <!-- Error: Cannot add direct child without default aggregation defined for control sap.m.Link -->
</Link>
But I'm getting the above error.
Tried using an HTML link, but it can't deal with the path of the remote data:
<html:a href="{oData>/Url}" target="_blank"><Button text="Open Website"/></html:a>
Then I tried to use the onPress
event handler when using a Button and the window.open
function:
<Button text="Open Website" press=".onPress" />
{ // In the Controller
onPress: function () {
window.open("{oData>/Url}","_blank");
},
}
But the Controller also can't deal with the path of the remote data resulting in the same invalid URL.
I also read from URLHelper
and tried this sample, but I'm unable to add the "value" attribute to the Button.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…