将文本设置为角度的最佳位置是什么?

时间:2016-11-07 08:54:41

标签: angularjs

我有一个角度项目,想要设置文本常量

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文件中,因为它会占用大部分文件并使其无法读取。

那么将这个常数(或变量)放在哪里的最佳位置是什么?

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码将此常量放在app.js或任何其他文件中

angular.module('myApp', []).constant('ARTICLE_SAMPLE', '<h1>This is a sample .....');

来自documentation

  

常量(名称,对象);

     

因为常数是固定的,所以它们得到了   在其他提供方法之前应用。请参阅$provide.constant()