Pass data to a view

hi,

in my app I have defined this route:

            {
                path: '/mypage/',
                url: 'mypage.html',
                name: 'mypage'
                }
            },

in the html page I have this

    <div class="page-content">
        <div class="block">
            <p>{{my_content}}</p>
          </div>
    </div>

the question is, when I use view.navigate I want to pass the value of my_content, how I can do this?

thank you