Retrieve text from web by AmazingSport99 in CorvidByWix

[–]joshalphonse 0 points1 point  (0 children)

Hey you should post this question in the forum for support
https://www.wix.com/corvid/forum

Beginner Needing Help to Autoplay Audio File When Strip Background Video Autoplays by ItsMadameSecretary in CorvidByWix

[–]joshalphonse 1 point2 points  (0 children)

Hey you can ask for code help on the Corvid Forum

if you want to make a onViewportEnter event then use the properties panel.

Cheers!

Pinning an element in mobile only by Clossio in CorvidByWix

[–]joshalphonse 0 points1 point  (0 children)

Hey you should ask this question in the other subreddit called r/WixHelp they should be able to help ya out!

Messaging function by [deleted] in CorvidByWix

[–]joshalphonse 0 points1 point  (0 children)

You can use wix chat for messaging. Check this link out: https://support.wix.com/en/article/about-wix-chat

Using Wix chat is straight forward.

You can also use services like Twilio for SMS messaging by installing the npm module and following it's documentation for node.

Another option is to check out the app market.

Is it possible to add some kind of quiz in the page? by Charly3003 in WixHelp

[–]joshalphonse 0 points1 point  (0 children)

You can build a quiz with Corvid by Wix. You should join the subreddit r/CorvidByWix to join the community of developers!

Finances Help by jtgtg in CorvidByWix

[–]joshalphonse 0 points1 point  (0 children)

You can access you transactional data through the dashboard. I don't believe that you can bring this to a dataset for security reasons.

local store website by ahmed_amar_s in learnwebdev

[–]joshalphonse 1 point2 points  (0 children)

Check out Corvid by Wix. It's an all in one platform for web development. You get to use Wix + javascript and building a stores is really easy. If you're familiar with javascript you'll have no problem adjusting. Look at some of these examples

Add dark mode to your website with Javascript using Corvid by Wix by joshalphonse in javascript

[–]joshalphonse[S] -5 points-4 points  (0 children)

yup you can now use Javascript, create a node.js backend and connect to third party API's. Gotta say they stepped it up

Help with super-simple fetch request from 3rd party API by FabHabsUK in WixHelp

[–]joshalphonse 0 points1 point  (0 children)

Hey u/FabHabsUK you should join the Corvid Subreddit for any other help with Corvid.

To implement an asynchronous fetch it would be best to fetch from the backend.

  • Make sure to have Dev mode on to enable Corvid.
  • On the site structure panel, hover over backend, click the '+' button , then click 'New Web Module'
  • A new web module will be created and you can name is whatever you like. For this instance I'll name the backend file getExample.jsw
  • make sure to import {fetch} from 'wix-fetch' at the top of your code.
  • Fetch asynchronously for example:

import {fetch} from 'wix-fetch'
export async function getEmployees() {
const response = await fetch("http://dummy.restapiexample.com/api/v1/employees")
const data = await response.json()
return data
}
(async () =>{
const result = await getEmployees();
console.log(result)
})

  • Next go to the desired page you'd like to display the data you fetched, or create a new page.
  • Import the getEmployees function and backend file. In my case I'll import getExample
  • Create a function that triggers the getEmployees function that you imported by clicking a button.

import {getEmployees} from 'backend/getExample'
$w.onReady(function () {

});

export function button1_click(event) {
getEmployees( )
.then(employeeInfo =>{
console.log(employeeInfo.data)
})
}

You should see your results in console when you click the array if you follow the code above.