我將PagerJS與knockoutjs結合使用來啓用簡單的分頁/歷史URL導航。PagerJS page-href鏈接到帶參數的頁面
PagerJS支持PARAMS像#搜尋文本= testtext &年= 2013
我限定的這樣的頁面,如:?
<div data-bind="page: {id: 'search', params: ['text', 'year']}">
</div
文字和年份是在視圖模型中的兩個observerables。它的工作原理,如果我將網址設置爲#search?text = testtext & year = 2013 text is testtext and year is 2013 and the page search is shown。
但是,現在我想簡單地鏈接到具有特定參數的此頁面。
<a data-bind="page-href: 'search'"></a>
此行將鏈接到#search(無參數),但我想要一個指向具有特定參數的搜索頁面的鏈接。有沒有辦法做到這一點?
感謝您的幫助。 –