我只想在某个javascript函数中触发ajax
我的代码如下:
<template is="dom-bind" id="app">
<iron-ajax auto url="{{ path('polymer_get_file') }}" handle-as="json" last-response="{{ '{{attachmentResponse}}' }}">
</iron-ajax>
<vaadin-grid items="{{attachmentResponse.results' }}">
<table>
<colgroup>
<col name="index">
<col name="file"/>
<col sortable name="file"/>
<col name="type"/>
</colgroup>
</table>
</vaadin-grid></template><script> function onClick (){
// Here i need to trigger iron-ajax } </script>https://stackoverflow.com/questions/41427402
复制相似问题