作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序上的 GET 操作返回数组中的数据:
Value":[{"Id":"6b7","Notes":"testing","CreatedBy":"User1"},{"Id":"6b7","Notes":"Testing 1","CreatedBy":"User2"}]
我使用上面的内容来填充模板:
<div class="create-note">
<form>
**<input type="hidden" id="Id" name="Id" value="{{this.Value.Id}}" />**
<textarea id="Notes" name="Notes"></textarea>
<button for="" type="submit" class="btn btn-primary ">Add Note</button>
<button type="reset" class="btn">Cancel</button>
</form>
{{#unless this.Value.length}}
<div class="alert alert-info">Notes do not exist.</div>
{{else}}
<table class="table">
<thead>
<tr>
<th style="text-align:left">Note</th>
<th style="text-align:left">Created By</th>
</tr>
</thead>
<tbody>
{{#each this.Value}}
<tr>
<td>
{{this.Notes}}
</td>
<td>
{{this.CreatedBy}}
</td>
</tr>
{{/each}}
</tbody>
</table>
{{/unless}}
</div>
如何填充隐藏表单字段(Id)。 value={{this.Value.Id}} 不起作用,因为我们有一个数组。
最佳答案
在 JavaScript 中提取 Id
并将其放在您想要的位置:
var data = {
"Value": [
{"Id": "6b7", "Notes": "testing", "CreatedBy": "User1"},
{"Id": "6b7", "Notes": "Testing 1", "CreatedBy": "User2"}
]
};
data.Id = data.Value[0].Id;
var tmpl = Handlebars.compile($('#template').html());
var html = tmpl(data);
然后在模板中引用 {{this.Id}}
(或仅 {{Id}}
)。
演示:http://jsfiddle.net/ambiguous/WSAxn/
或者,添加一个可以挖掘值(value)的助手,但这似乎是不必要的复杂性。
如果您要使用 Handlebars,则必须习惯将数据整理为 Handlebars 友好的表单。 Handlebars 的简单性既有优点也有缺点。
关于javascript - 填充隐藏表单字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12520939/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!