gpt4 book ai didi

javascript - angularjs 入门失败

转载 作者:行者123 更新时间:2023-11-29 21:24:43 26 4
gpt4 key购买 nike

不知道为什么这不起作用

https://jsfiddle.net/0616b9ks

<body ng-app="main" id="homepage">
<h1 ng-controller="homepageCtrl">hello {{test}}</h1>
</body>

JS

var app = angular.module("main", [])

.controller("homepageCtrl", function($scope) {
$scope.test = "World!";
});

最佳答案

您的代码没问题。这是造成麻烦的 jsfiddle。

onLoad 切换负载类型至 No Wrap - in <head>刚刚在你的 fiddle 上测试过。就像一个魅力。

为什么有效?
默认情况下,JsFiddle 将代码包装在 ready 或 load 事件中,Angular 在编译代码时可能无法在全局范围内获得所需的内容。 No wrap in <head>只需将脚本加载到头部,无需换行。

如果您经常为 Angular 使用 jsfiddle,请读一读,它将为您节省很多时间- Using jsFiddle with Angular

enter image description here

关于javascript - angularjs 入门失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37785034/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com