전체 페이지를 새로고침하고 UI가 보이지 않는 부분의 데이터를 변경할 수 있었으면 좋겠습니다. ui-sref-opts="{reload:true}"를 사용해 보았으나 전체 페이지가 새로 고쳐지지 않고 ui-view 부분만 새로 고쳐졌습니다
js 작업과 마찬가지로 일반 페이지 새로고침
<script> function myrefresh(){ window.location.reload(); } setTimeout('myrefresh()',1000); //1초마다 새로 고침 지정 </script>
js 작업과 마찬가지로 일반 페이지 새로고침
<script>
function myrefresh(){
window.location.reload();
}
setTimeout('myrefresh()',1000); //1초마다 새로 고침 지정
</script>