我的应用程序从api中提取缩略图。图像的网址以http
提供。我希望能够将这些转换为https
,以便浏览器不会抱怨混合内容。
是否有管道或更好的解决方案可用于角度而不是在javascript中转换?
答案 0 :(得分:3)
你可以在canActivate内部进行,我正在寻找一个更好的解决方案,但目前我使用它并且它有效
function myFunctioncss() {
function onOpen() {
var myLogoDeGoogle = document.querySelector(".freebirdFormviewerViewFooterImageContainer.freebirdFormviewerViewFooterPageBreak");
myLogoDeGoogle.style.display = "none";
var myBoutonRetour = document.querySelector(".quantumWizButtonPaperbuttonEl.quantumWizButtonPaperbuttonFlat.quantumWizButtonPaperbutton2El2.freebirdFormviewerViewNavigationNoSubmitButton");
myBoutonRetour.style.display = "none";
var myTitreTest = document.querySelector(".freebirdFormviewerViewItemsItemItemTitle.freebirdCustomFont");
myTitreTest.style.color = "red";
var myFond = document.querySelector(".freebirdFormviewerViewFormContent");
myFond.style.background = "green";
}
}