Knockout JS:ko.applyBindings 不是函数

发布于 2025-01-07 11:05:44 字数 333 浏览 0 评论 0原文

我正在尝试在一个简单的 Web 应用程序中使用 Knockout js。 这是我的虚拟 javascript 代码:

function MainViewModel() {
    this.myText = ko.observable('Hello world');
}
var MainViewModelInstance = new MainViewModel();
ko.applyBindings(MainViewModelInstance);

但是当我运行 index.html 时,调试控制台显示“ko.applyBindings 不是函数”!

帮助! 谢谢

I'm trying to use Knockout js in a simple web application.
Here's my dummy javascript code:

function MainViewModel() {
    this.myText = ko.observable('Hello world');
}
var MainViewModelInstance = new MainViewModel();
ko.applyBindings(MainViewModelInstance);

But when I run the index.html, the debug console says "ko.applyBindings is not a function"!

Help!
Thanks

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

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

发布评论

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

评论(1

紫竹語嫣☆ 2025-01-14 11:05:45

您尚未在源代码中包含 knockout.js 库的链接,或者链接错误。解决这个问题就可以了。

<script src="/scripts/knockout-2.0.0.js" type="text/javascript"></script>

其中/scripts目录是knockoutjs在服务器上所在的位置。

编辑

这是您的代码的工作示例。

<html>
    <head>
        <script src="knockout-2.0.0.js" type="text/javascript"></script>
    </head>
    <body>

        <script type="text/javascript">

            function MainViewModel() {
                this.myText = ko.observable('Hello world');
            }
            var MainViewModelInstance = new MainViewModel();
            ko.applyBindings(MainViewModelInstance);

        </script>

    </body>
</html>

You have not included the link to the knockout.js library in your source code or the link is wrong. Fix this and it will work.

<script src="/scripts/knockout-2.0.0.js" type="text/javascript"></script>

Where the /scripts directory is the location on the server where knockoutjs resides.

EDIT

Here is an example of your code that works.

<html>
    <head>
        <script src="knockout-2.0.0.js" type="text/javascript"></script>
    </head>
    <body>

        <script type="text/javascript">

            function MainViewModel() {
                this.myText = ko.observable('Hello world');
            }
            var MainViewModelInstance = new MainViewModel();
            ko.applyBindings(MainViewModelInstance);

        </script>

    </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文