Pārlūkot izejas kodu

updated templates to support file as body or form params

bubble
Tony Tam pirms 10 gadiem
vecāks
revīzija
2de104aac9
2 mainītis faili ar 9 papildinājumiem un 6 dzēšanām
  1. +1
    -3
      src/main/coffeescript/view/OperationView.coffee
  2. +8
    -3
      src/main/template/param.handlebars

+ 1
- 3
src/main/coffeescript/view/OperationView.coffee Parādīt failu

@@ -162,7 +162,7 @@ class OperationView extends Backbone.View
# add params
for param in @model.parameters
if param.paramType is 'form'
if map[param.name] != undefined
if param.type.toLowerCase() isnt 'file' and map[param.name] != undefined
bodyParam.append(param.name, map[param.name])

# headers in operation
@@ -179,8 +179,6 @@ class OperationView extends Backbone.View
bodyParam.append($(el).attr('name'), el.files[0])
params += 1

log(bodyParam)

@invocationUrl =
if @model.supportHeaderParams()
headerParams = @model.getHeaderParams(map)


+ 8
- 3
src/main/template/param.handlebars Parādīt failu

@@ -15,10 +15,15 @@
{{/if}}
{{/if}}
{{else}}
{{#if defaultValue}}
<input class='parameter' minlength='0' name='{{name}}' placeholder='' type='text' value='{{defaultValue}}'/>
{{#if isFile}}
<input type="file" name='{{name}}'/>
<div class="parameter-content-type" />
{{else}}
<input class='parameter' minlength='0' name='{{name}}' placeholder='' type='text' value=''/>
{{#if defaultValue}}
<input class='parameter' minlength='0' name='{{name}}' placeholder='' type='text' value='{{defaultValue}}'/>
{{else}}
<input class='parameter' minlength='0' name='{{name}}' placeholder='' type='text' value=''/>
{{/if}}
{{/if}}
{{/if}}



Notiek ielāde…
Atcelt
Saglabāt