Với chức năng này:
function Repeater(template) {
var repeater = {
markup: template,
replace: function(pattern, value) {
this.markup = this.markup.replace(pattern, value);
}
};
return repeater;
};
Làm cách nào để this.markup.replace()
thay thế toàn cầu? Đây là vấn đề. Nếu tôi sử dụng nó như thế này:
alert(new Repeater("$TEST_ONE $TEST_ONE").replace("$TEST_ONE", "foobar").markup);
Giá trị của cảnh báo là "foobar $ TEST_ONE".
Nếu tôi thay đổi Repeater
thành phần sau thì không có gì được thay thế trong Chrome:
function Repeater(template) {
var repeater = {
markup: template,
replace: function(pattern, value) {
this.markup = this.markup.replace(new RegExp(pattern, "gm"), value);
}
};
return repeater;
};
... và cảnh báo là $TEST_ONE $TEST_ONE
.