大家好,新年快乐!
我尝试将参数$ctrl.configFile.samples
插入src但是我做错了并在控制台上出错(比如iframe src read $ctrl.configFile.samples
或类似的东西):
Failed to load resource: net::ERR_FILE_NOT_FOUND
function _downloadSamples() {
var filePath = path.join(__dirname,'/../','/../config.json');
this.configFile = JSON.parse(fs.readFileSync(filePath, 'utf8'));
$mdDialog.show({
controller: sideActionsController,
controllerAs: '$ctrl',
template:
`
<md-toolbar class="root-container">
<iframe width="1280" height="720" src="$ctrl.configFile.samples" frameborder="0" scrolling="yes"></iframe>
`,
bindToController: true,
clickOutsideToClose: true,
fullscreen: true,
parent: $rootScope.parentEl
})
}
答案 0 :(得分:1)
JS将 $ ctrl.configFile.samples 视为纯字符串,如果您想获取该变量的内容,则必须以此格式编写该字符串:
src="${ $ctrl.configFile.samples }"
使用模板文字,您可以访问如下变量:`some string ... $ {variable} ...字符串的其余部分。
详细了解template literals。
答案 1 :(得分:1)
使用像这样的单引号,
'<md-toolbar class="root-container">
<iframe width="1280" height="720" src=" ' + $ctrl.configFile.samples + '" frameborder="0" scrolling="yes"></iframe> '