Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f63d315

Browse files
committedJan 14, 2014
fix(script): parse template as JSON if content-type attr matches 'json'
This change is needed so that $http can avoid parsing JSON if an inline template is in use. BREAKING CHANGE: inline templates which were previously parsed as JSON by default, now require the attribute `content-type` to contain the text 'json'. Additionally, the data pushed into $templateCache by the script directive is now always an array, with the following items: [ status (200), data (script text or parsed JSON), headers (the empty object) ] BEFORE: ``` <script type="text/ng-template" id="famous-foods.json"> { "elvis presley": "peanut butter, banana & bacon sandwich", "shirley temple": "whipped potatoes & roast beef", "marilyn monroe": "grilled steak" } </script> ``` AFTER: ``` <script type="text/ng-template" id="famous-foods.json" content-type="application/json"> { "elvis presley": "peanut butter, banana & bacon sandwich", "shirley temple": "whipped potatoes & roast beef", "marilyn monroe": "grilled steak" } </script>
1 parent 34fee06 commit f63d315

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed
 

‎docs/src/example.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ exports.Example.prototype.toHtmlTabs = function() {
115115
htmlTabs(this.html);
116116
htmlTabs(this.css);
117117
htmlTabs(this.js);
118-
htmlTabs(this.json);
118+
htmlTabs(this.json, 'application/json');
119119
htmlTabs(this.unit);
120120
htmlTabs(this.scenario);
121121
htmlTabs(this.protractorTest);
122122
out.push('</div>');
123123
return out.join('');
124124

125-
function htmlTabs(sources) {
125+
function htmlTabs(sources, contentType) {
126126
sources.forEach(function(source) {
127127
var wrap = '',
128128
isCss = source.name.match(/\.css$/),
@@ -139,7 +139,9 @@ exports.Example.prototype.toHtmlTabs = function() {
139139
'<pre class="prettyprint linenums" ng-set-text="' + source.id + '"' + wrap + '></pre>\n' +
140140
(isCss
141141
? ('<style type="text/css" id="' + source.id + '">' + source.content + '</style>\n')
142-
: ('<script type="text/ng-template" id="' + source.id + '">' + source.content + '</script>\n') ) +
142+
: ('<script type="text/ng-template"' + (' id="' + source.id + '"') +
143+
(contentType ? ' content-type="' + contentType + '"' : '') + '>' +
144+
source.content + '</script>\n') ) +
143145
'</div>\n');
144146
});
145147
}

‎src/ng/directive/script.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,14 @@ var scriptDirective = ['$templateCache', function($templateCache) {
4141
if (attr.type == 'text/ng-template') {
4242
var templateUrl = attr.id,
4343
// IE is not consistent, in scripts we have to read .text but in other nodes we have to read .textContent
44-
text = element[0].text;
44+
text = element[0].text,
45+
headers = {};
4546

46-
$templateCache.put(templateUrl, text);
47+
if (attr.contentType || '') {
48+
headers['Content-Type'] = attr.contentType;
49+
}
50+
51+
$templateCache.put(templateUrl, [200, text, headers]);
4752
}
4853
}
4954
};

‎test/ng/directive/scriptSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('scriptDirective', function() {
1515
'<script id="/ignore">ignore me</script>' +
1616
'<script type="text/ng-template" id="/myTemplate.html"><x>{{y}}</x></script>' +
1717
'</div>' );
18-
expect($templateCache.get('/myTemplate.html')).toBe('<x>{{y}}</x>');
18+
expect($templateCache.get('/myTemplate.html')[1]).toBe('<x>{{y}}</x>');
1919
expect($templateCache.get('/ignore')).toBeUndefined();
2020
}
2121
));

0 commit comments

Comments
 (0)
Please sign in to comment.