我有一个角度项目,想要设置文本常量
article_sample = "<h1> This is a sample article </h1>\
This is the content
This is the content
This is the content
...
This is the content"
这篇文章很长(可能超过一页)。在我的js文件中,如果我从后端获得null文章,我应该使用assign article_sample
:
if (article == null) {
article = article_sample;
}
我不想将常量或变量article_sample
放在同一个js文件中,因为它会占用大部分文件并使其无法读取。
那么将这个常数(或变量)放在哪里的最佳位置是什么?
答案 0 :(得分:1)
您可以使用以下代码将此常量放在app.js
或任何其他文件中
angular.module('myApp', []).constant('ARTICLE_SAMPLE', '<h1>This is a sample .....');
常量(名称,对象);
因为常数是固定的,所以它们得到了 在其他提供方法之前应用。请参阅$provide.constant()。