如何使用自定义SQL查询在网站上检索Fluent表单插件提交?

时间:2019-01-14 08:16:12

标签: sql wordpress

我使用了 <div ng-if="$ctrl.astrologerLanguageDetails.IsEnglishValue === true && astroProfile.LanguageId ==='EN' ||ENchkselct" ng-show="ENchkselct"> <div class="col-sm-6 h3"><b>English Profile Translation</b></div><br /><br /><div class="clearfix"></div> <div class="form-group"> <label class="col-sm-2 control-label">Display First Name</label> <div class="col-sm-6"> <input type="text" name="profileengfirstname" ng-model="astroProfile.FirstName" class="form-control" /> <!--<span ng-show="astroProfileform.$submitted && astroProfileform.profileengfirstname.$error.required"> Profile First Name is required. </span>--> </div> <label class="col-sm-1 control-label" ng-if="astroProfile.FirstName=== null"><span class="label label-danger">Incomplete</span></label> </div> <div class="form-group"> <label class="col-sm-2 control-label">Display Last Name</label> <div class="col-sm-6"> <input type="text" name="profileenglastname" ng-model="astroProfile.LastName" class="form-control" /> <!--<span ng-show="astroProfileform.$submitted && astroProfileform.profileenglastname.$error.required"> Profile Last Name is required. </span>--> </div> <label class="col-sm-1 control-label" ng-if="astroProfile.LastName === null"><span class="label label-danger">Incomplete</span></label> </div> <div class="form-group"> <label class="col-sm-2 control-label">Profile Description</label> <div class="col-sm-6"> <textarea name="profileengresumetext" ng-model="astroProfile.ResumeText" class="form-control"></textarea> <!--<span ng-show="astroProfileform.$submitted && astroProfileform.profileengresumetext.$error.required"> Profile Resume Text is required. </span>--> </div> <label class="col-sm-1 control-label" ng-if="astroProfile.ResumeText=== null"><span class="label label-danger">Incomplete</span></label> </div> </div> 表单插件来接受用户数据提交,并使用集成的Fluent表来查看现场数据。我想做的是对数据Ninjajoin等进行一些自定义查询。据我所知,使用data less than或任何其他插件是不可能的。如何编写Ninja Tables查询以使用自定义sql语句从提交中检索数据?

0 个答案:

没有答案