gpt4 book ai didi

javascript - Angular 不在输出 html 文件中显示数据

转载 作者:太空宇宙 更新时间:2023-11-04 03:48:18 25 4
gpt4 key购买 nike

我有包含以下代码的 app.js 文件:

(function () {
var app = angular.module('store', []);

app.controller('StoreController', function () {
this.product = gem;
});

var gem = {
name: 'Dodechaedron',
price: 2.95,
description: '...',
};

})();

我还有以下包含以下代码的 html 文件:

<div ng-app="StoreController as store">
<h1>{{store.product.name}}</h1>
<h2>{{store.product.price}}</h2>
<p>{{store.product.description}}</p>
</div>
<script src="Scripts/angular.min.js"></script>
<script src="app.js"></script>

还包括

<html xmlns="http://www.w3.org/1999/xhtml" ng-app="store">

当我构建应用程序时 - 没有任何反应。问题是 - app.js 文件中的 mi 数据在哪里?

谢谢。

最佳答案

您正在使用 ng-app 而不是 ng-controller。如果您将 html 更改为此,它应该可以工作:

<div ng-controller="StoreController as store">

关于javascript - Angular 不在输出 html 文件中显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23767007/

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