This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const authorName = book?.author?.firstName ?? 'Unknown' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- coldfusion 8 version ---> | |
<cfcomponent> | |
<cffunction name="plupload" access="remote" returntype="struct" returnformat="json" output="false"> | |
<cfargument name="name" default="" /> | |
<cfscript> | |
var uploadDir = expandPath('../assets/'); | |
var uploadFile = uploadDir & arguments.NAME; | |
var response = {result = arguments.NAME, id = 0}; | |
var result = {}; |