我有以下设置并正常工作。
require(['models/profile'], function (SectionModel) {
var sectionModel = new SectionModel({id: merchantId, silent: true});
sectionModel.fetch({
success: function (data) {
$('#merchant-name').html(data.attributes.merchantName);
}
});
});
但它只会在一种情况下起作用。我想知道如何正确编辑上述代码以允许多个实例。
<h3 id="merchant-name"></h3>
内容是在“保存”功能中生成的。
merchantName:$('#merchantName').val(),