我在Aurelia工作。我有一个非常简单的场景,即在HTML页面上仅按钮和一个文本框正在显示,并且当用户在文本框中写入文本并单击按钮时,来自数组的所有相关记录应显示给定文本。例如,如果用户写“ Aamir”,则与amir相关的记录(“ Aamir Hussain and Rollnumber:413”)应以表格格式或简单字符串显示在屏幕上。
select is_remote_proc_transaction_promotion_enabled from sys.servers where name = 'LinkedServer'
我尝试了许多方法,但无法找到解决问题的方法
答案 0 :(得分:2)
这是GistRun(最好是Google Chrome):https://gist.run/?id=7d49e5adafe359a165ddd8423830ef92
app.html
Unexpected 'let'.
for (let i = 0; i < 5; i += 1) {
app.js
<template>
<input type="text" value.bind="searchText"></input>
<p>${foundItem}</p>
</template>
我强烈建议您观看Beginning Aurelia Development。