Knockout.js url 路由

发布于 2025-01-04 20:15:07 字数 201 浏览 0 评论 0原文

我做了我的第一个knockout.js应用程序 http://jsfiddle.net/Pqs7e/

用于显示应用程序部分(书籍部分,关于部分)我使用 jquery $("#id").show()。我觉得这不是正确的方法。我如何通过视图模型的机制来做到这一点?

I did my first knockout.js application http://jsfiddle.net/Pqs7e/

For display application parts (books section, about section) I use jquery $("#id").show(). I feel this is not right way. How can I do this through the mechanism of the viewmodel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凹づ凸ル 2025-01-11 20:15:07

另一种方法是使用模板:

<div data-bind="template: state">
    Template renders here
</div>

然后您的部分可以在类似这样的地方定义(在同一文件或其他地方):

<script id="books" type="text/html">
   Your markup here...
</script>

<script id="about" type="text/html">
   Your markup here...
</script>

An alternate way to do this is with templates:

<div data-bind="template: state">
    Template renders here
</div>

Then your sections can be defined somewhere like this (in the same file or elsewhere):

<script id="books" type="text/html">
   Your markup here...
</script>

<script id="about" type="text/html">
   Your markup here...
</script>
凉墨 2025-01-11 20:15:07

我会使用特殊的 state observable 来实现它,它可以识别要显示的 div:

function ViewModel(){
    var self = this;
    self.state = ko.observable();
    ...
}

然后你只需像这样绑定它:

<div id="books" data-bind="visible: state() === 'books'>...</div>
<div id="about" data-bind="visible: state() === 'about'>...</div>

并在这样的状态之间切换:

this.get('#books', function() {
    self.state("books");
});

this.get('#about', function() {
    self.state("about");
});

I would do it with special state observable which would identify which div to show:

function ViewModel(){
    var self = this;
    self.state = ko.observable();
    ...
}

Then you just bind it like this:

<div id="books" data-bind="visible: state() === 'books'>...</div>
<div id="about" data-bind="visible: state() === 'about'>...</div>

and switch between states like this:

this.get('#books', function() {
    self.state("books");
});

this.get('#about', function() {
    self.state("about");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文