我需要在项目的每个页面中使用Angular Material烤面包机,并且消息可能包含html标签。但是html消息不适用于Angular Material烤面包机。
$mdToast.show(
$mdToast.simple()
.textContent('Field is required <br> Some Other Content')
.position(pos)
.hideDelay(3000)
);
有什么想法吗?
答案 0 :(得分:1)
例如,您可以这样做。
var displayToast = function(type, msg) {
$mdToast.show({
template: '`<br/>`' + msg + '`<br/>`',
hideDelay: 6000,
position: 'bottom right'
});
};
答案 1 :(得分:0)
你可以这样做
//Like this you change your as your desire
mTitleTextView.setBackgroundColor(getResources().getColor(android.R.color.black));
并在您的模板中
<!-- Bootstrap Core CSS -->
<link href="{absolutePATH}/css/bootstrap.min.css" rel="stylesheet">
...
<body>
<script> var absolutePATH = windows.location.href;</script>